forked from BondGraphTools/BondGraphTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (36 loc) · 1.37 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
import setuptools
from BondGraphTools.version import __version__ as version
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", 'r') as fh:
requirements =[line.strip() for line in fh.readlines()]
setuptools.setup(
name="BondGraphTools",
version=version,
author="Pete Cudmore",
author_email="[email protected]",
description="Bond Graph Modelling Toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BondGraphTools/BondGraphTools",
classifiers=(
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
),
keywords="modelling control engineering",
packages=['BondGraphTools'],
package_dir={'BondGraphTools': 'BondGraphTools'},
package_data={'BondGraphTools': ['components/*.json']},
extras_require={
'docs': [
'sphinx >= 1.7',
'sphinx_rtd_theme']},
install_requires=requirements
)