-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.14 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.14 KB
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
with open("README.md", "r") as f:
long_description = f.read()
from trizod import META_DATA, __version__
VERSION = __version__
setuptools.setup(
name=META_DATA['package_name'].lower(),
version=VERSION,
author=META_DATA['author'],
author_email=META_DATA['author_email'],
description=META_DATA['description'],
long_description=long_description,
long_description_content_type="text/markdown",
url=META_DATA['github_url'],
packages=setuptools.find_packages(),
include_package_data=True,
package_data={'': ['potenci/data_tables/*.csv']},
install_requires=[
'pandas',
'numpy',
'matplotlib',
'tqdm',
'pandarallel',
'pynmrstar',
'scipy'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU AFFERO GENERAL PUBLIC LICENSE Version 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research"
],
entry_points={
'console_scripts': [
'trizod=trizod.trizod:main',
]},
)