forked from prcurran/hotspots
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.14 KB
/
setup.py
File metadata and controls
31 lines (28 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
from __future__ import print_function
from setuptools import setup, find_packages
with open("README.txt", "r") as fh:
long_description = fh.read()
print(find_packages())
setup(
name="hotspots",
author="Chris Radoux, Peter Curran, Mihaela Smilova",
author_email="pcurran@ccdc.cam.ac.uk",
license="MIT",
version="1.0.0",
url="https://github.com/prcurran/hotspots",
packages=find_packages(),
include_package_data=True,
# scripts=['src/run_hotspot.py'],
long_description=long_description,
long_description_content_type="text/x-rst",
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=['numpy>=1.9', 'csd-python-api>=2.0.0', 'matplotlib', 'scipy', 'sklearn', 'scikit-image', 'pandas',
'futures', 'cython', 'tqdm', 'xmltodict'],
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst', '*.pkl'],
# And include any *.mol2 files found in the 'probes' package, too:
'hotspots': ['probes/*.mol2'],
}
)