-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (42 loc) · 1.23 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
import setuptools
from distutils.core import setup
with open("README.md", "r") as f:
long_description = f.read()
with open("hanlab/version.py", "r") as f:
# Define __version__
exec(f.read())
setup(
name="hanlab",
packages=setuptools.find_packages(),
version=__version__,
license="MIT",
description="hanlab - odnp data processing and fitting",
long_description=long_description,
long_description_content_type="text/markdown",
author="Thomas Casey",
url="https://github.com/thcasey3/hanlab",
download_url="https://github.com/thcasey3/hanlab/",
project_urls={
"Homepage": "https://thcasey3.github.io/hanlab/",
"Documentation": "https://thcasey3.github.io/hanlab/",
"Source": "https://github.com/thcasey3/hanlab/",
},
keywords=["dnplab odnp nmr epr dnp"],
python_requires=">=3.6",
install_requires=[
"dnplab",
"numpy",
"scipy",
"PyQt5",
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
entry_points=dict(
console_scripts=[
"hydrationGUI=hanlab.hydrationGUI:main_func",
]
),
)