generated from worldbank/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (29 loc) · 745 Bytes
/
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
from setuptools import setup
"""
Description of how to make a python package
https://python-packaging.readthedocs.io/en/latest/command-line-scripts.html
"""
def readme():
with open("README.md") as f:
return f.read()
setup(
name="pyDocking",
version="0.1",
long_description=readme(),
description="A collection of drug discovery tools",
url="https://github.com/tuhinmallick/pyDocking",
author="Tuhin Mallick",
author_email="[email protected]",
license="GPL-3.0",
packages=["pyDocking"],
install_requires=[
"numpy",
"pandas",
"pubchempy",
"mdtraj",
"rdkit",
],
include_package_data=True,
zip_safe=False,
python_requires=">=3.5",
)