forked from cfsengineering/CEASIOMpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (49 loc) · 1.49 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Aaron Dettmann
import setuptools
import os
from ceasiompy.__version__ import __version__
NAME = 'ceasiompy'
EXCLUDE_DIRS = ['doc', 'test']
VERSION = __version__
AUTHOR = 'CFS Engineering'
EMAIL = '[email protected]'
DESCRIPTION = 'A conceptual aircraft design environment'
URL = 'https://github.com/cfsengineering/CEASIOMpy'
REQUIRES_PYTHON = '>=3.6.0'
REQUIRED = ['numpy']
README = 'README.rst'
PACKAGE_DIR = '.'
LICENSE = 'LICENSE'
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, README), "r") as fp:
long_description = fp.read()
with open(LICENSE) as f:
license = f.read()
setuptools.setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
description=DESCRIPTION,
long_description=long_description,
url=URL,
include_package_data=True,
package_dir={'': PACKAGE_DIR},
license=license,
packages=setuptools.find_packages(exclude=EXCLUDE_DIRS),
python_requires=REQUIRES_PYTHON,
install_requires=REQUIRED,
# See: https://pypi.org/classifiers/
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
)