-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
34 lines (31 loc) · 1.22 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
from setuptools import setup, find_packages
from os import path
this_dir = path.abspath(path.dirname(__file__))
with open(path.join(this_dir, "README.rst")) as f:
long_description = f.read()
__version__ = "1.1.1rc"
for line in open(path.join("OpenMiChroM", "__init__.py")):
if line.startswith("__version__"):
exec(line.strip())
setup(
name="OpenMiChroM",
version=__version__,
description="Open-Michrom lib for chromosome simulations",
url="https://ndb.rice.edu/Open-MiChroM",
author="Antonio Bento de Oliveira Junior,Vinicius de Godoi Contessoto",
author_email="[email protected],[email protected]",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English",
],
include_package_data=True,
packages=find_packages(),
install_requires=['numpy', 'scipy', 'scikit-learn', 'h5py', 'pandas'],
entry_points={"console_scripts": ["CLINAME=OpenMiChroM._cli:main"]},
zip_safe=True,
long_description=long_description,
long_description_content_type="text/x-rst",
)