-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (38 loc) · 1.14 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name="ocd",
version="0.1",
description="Tool to calculate immunoglobulin inter-domain orientations",
author="Valentin J. Hoerschinger",
author_email="[email protected]",
include_package_data=True,
zip_safe=False,
licence = "GPLv3",
long_description=readme(),
url = "https://github.com/liedllab/OCD",
packages=['ocd'],
py_modules=["ocd.visualize", "ocd.calculation","ocd.OCD"],
install_requires=[
'pandas',
'mdtraj',
'pytraj',
'numpy',
'matplotlib',
],
entry_points={
'console_scripts': [
'OCD=ocd.OCD:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Unix',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)