forked from prcurran/hotspots
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (39 loc) · 1.43 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
from __future__ import print_function
from setuptools import setup, find_packages
import os
print(find_packages())
def read_file(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as file:
return file.read()
setup(
name="hotspots",
author="Chris Radoux, Peter Curran, Mihaela Smilova",
author_email="pcurran@ccdc.cam.ac.uk",
license="MIT",
version="1.0.3",
url="https://github.com/prcurran/hotspots",
packages=find_packages(),
include_package_data=True,
# scripts=['src/run_hotspot.py'],
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=['numpy',
'csd-python-api>=2.0.0',
'matplotlib',
'scipy',
'sklearn',
'scikit-image',
'hdbscan',
'pandas',
'futures',
'tqdm==4.31.1',
'xmltodict==0.12.0'],
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'],
}
)