-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 864 Bytes
/
Copy pathsetup.py
File metadata and controls
37 lines (32 loc) · 864 Bytes
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
from setuptools import setup, find_packages
try:
import versioneer
except ImportError:
versioneer = None
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = [
"versioneer",
"Levenshtein",
"pandas",
"rdkit",
"wget",
"obonet",
"pyvis",
"tqdm",
"pyarrow",
]
config = {
"description": long_description,
"author": "Soren Wacker",
"url": "https://github.com/sorenwacker",
"download_url": "https://github.com/sorenwacker/chebi_tools",
"author_email": "swacker@ucalgary.ca",
"version": versioneer.get_version() if versioneer is not None else None,
"cmdclass": versioneer.get_cmdclass() if versioneer is not None else [],
"install_requires": install_requires,
"packages": find_packages(),
"scripts": [],
"name": "chebi_tools",
}
setup(**config)