forked from gadsbyfly/PyBioMed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 808 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 808 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
# Core Library modules
import sys
# Third party modules
from setuptools import setup
packagedata = {
"PyBioMed": [
"PyDNA/*",
"PyGetMol/*",
"PyInteraction/*",
"PyPretreat/*",
"PyProtein/*",
"PyMolecule/*",
"PyMolecule/*",
"test/*",
"test/test_data/*",
"example/caco2/*",
"example/dna/*",
"example/dpi/*",
"example/solubility/*",
"example/subcell/*",
"doc/html/*",
"doc/tml/_sources/*",
"doc/html/_sources/reference/*",
"doc/html/_images/*",
"doc/html/_modules/*",
"doc/html/_static/*",
"doc/html/reference/*",
"doc/*",
"doc/Descriptor/*",
]
}
setup(package_data=packagedata, package_dir={"PyBioMed": "PyBioMed"})