-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
41 lines (37 loc) · 1.67 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 sys
import re
from setuptools import setup, find_packages
import versioneer
long_description = open("README.rst").read()
long_description = re.sub(':ref:', '', long_description)
long_description = re.sub(':mod:', '', long_description)
if __name__ == "__main__":
if sys.version_info < (3, 5):
raise ImportError("requires Python>=3.5")
setup(name="wlcsim",
author="Bruno Beltran",
author_email="[email protected]",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url="https://github.com/SpakowitzLab/BasicWLC",
license="",
long_description=long_description,
long_description_content_type='text/x-rst',
classifiers=["Intended Audience :: Science/Research",
'Intended Audience :: Developers',
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Fortran",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
],
packages=find_packages(include=["wlcsim", "wlcsim.*"]),
package_data={
'wlcsim.tabulation': ['*.csv', 'dssWLCparams'],
},
install_requires=["scipy", "statsmodels", "matplotlib", "seaborn",
"mpmath", "pandas", "numpy", "bruno_util",
"spycial", "PyQt5"],
)