-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.06 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
#!/usr/bin/env python
import sys
version = sys.argv[1]
del sys.argv[1]
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
include_package_data = True
setup(
name='ShockPy',
version=version,
description="Code developed to analytically model shock wave experiments with uncertainty",
long_description_content_type="text/markdown",
long_description=readme,
url='https://github.com/dimtsap/MSEE_MgO_UQ',
author="Dimitris Tsapetis",
license='MIT',
platforms=["OSX", "Windows", "Linux"],
packages=find_packages("src"),
package_dir={"": "src"},
package_data={
'data': ["*"]
},
install_requires=[
"UQpy",
"shapely",
"seaborn"
],
extras_require={
'dev': [
"Sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-bibtex",
"sphinx-gallery"
]
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
],
)