-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 816 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 816 Bytes
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
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
setup(name='biclustpy',
version='0.2',
description='bi-cluster editing library',
long_description=readme(),
long_description_content_type='text/markdown',
keywords='bi-cluster editing',
url='http://github.com/dbblumenthal/biclustpy',
author='David B. Blumenthal',
author_email='david.blumenthal@wzw.tum.de',
license='LGPL',
packages=['biclustpy'],
install_requires=[
'numpy',
'argparse',
'networkx',
'progress',
'gurobipy'
],
entry_points={
'console_scripts': ['biclustpy=biclustpy.command_line:main'],
},
include_package_data=True,
zip_safe=False)