-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·65 lines (58 loc) · 1.73 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
59
60
61
62
63
64
65
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
import os
from src.framat.__version__ import __version__
# See also: https://github.com/kennethreitz/setup.py/blob/master/setup.py
NAME = 'framat'
VERSION = __version__
AUTHOR = 'Aaron Dettmann'
EMAIL = '[email protected]'
DESCRIPTION = 'FramAT (Frame Analysis Tool) is a tool for 3D FEM beam analyses'
URL = 'https://github.com/airinnova/framat'
REQUIRES_PYTHON = '>=3.6.0'
REQUIRED = [
'commonlibs>=0.3.3',
'jsonschema',
'matplotlib>=3.4.0',
'numpy',
'scipy',
'model-framework>=0.0.14',
]
README = 'README.rst'
PACKAGE_DIR = 'src'
LICENSE = 'Apache License 2.0'
SCRIPTS = []
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, README), "r") as fp:
long_description = fp.read()
setuptools.setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
description=DESCRIPTION,
long_description=long_description,
url=URL,
include_package_data=True,
scripts=SCRIPTS,
package_dir={'': PACKAGE_DIR},
license=LICENSE,
# packages=[NAME],
packages=setuptools.find_packages(where=PACKAGE_DIR),
python_requires=REQUIRES_PYTHON,
install_requires=REQUIRED,
# See: https://pypi.org/classifiers/
classifiers=[
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.6',
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
)