-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
56 lines (53 loc) · 1.62 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
from setuptools import setup
import os
def readme():
with open('README.md') as f:
return f.read()
here = os.path.dirname(os.path.abspath(__file__))
version_ns = {}
with open(os.path.join(here, 'pygasflow', '_version.py')) as f:
exec (f.read(), {}, version_ns)
setup(
name = 'pygasflow',
version = version_ns["__version__"],
description = 'Ideal Gasdynamics utilities for Python 3.6+',
long_description = readme(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.9',
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics"
],
keywords='gasdynamic shockwave fanno rayleigh isentropic flow perfect gas',
url = 'https://github.com/Davide-sd/pygasflow',
author = 'Davide Sandona',
author_email = '[email protected]',
license='GNU GPL v3',
packages = [
'pygasflow',
'pygasflow.atd',
'pygasflow.atd.newton',
'pygasflow.atd.avf',
'pygasflow.nozzles',
'pygasflow.solvers',
'pygasflow.utils',
'pygasflow.interactive',
'pygasflow.interactive.diagrams',
'pygasflow.interactive.pages',
],
include_package_data=True,
zip_safe = False,
install_requires = [
"numpy",
"scipy",
"matplotlib",
"pandas",
"bokeh",
"panel",
"colorcet",
# "cantera"
]
)