-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·36 lines (30 loc) · 946 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
36
"""
(c) MGH Center for Integrated Diagnostics
"""
from __future__ import print_function
from __future__ import absolute_import
from setuptools import setup, find_packages
exec(open('celltics/version.py').read())
def load_requirements():
with open('requirements.txt', 'r') as f:
return [l.strip(' ') for l in f if '://' not in l]
setup(
name='celltics',
version='__version__',
py_modules=['celltics'],
packages=find_packages(),
url='https://github.com/MGHComputationalPathology/CellTics',
license='BSD',
author='Allison MacLeay',
author_email='[email protected]',
description='Center for Integrated Diagnostics at Mass General Hospital NGS tools',
include_package_data=True,
package_data={
'celltics.tests.data.files': ['*.*'],
},
install_requires=load_requirements(),
entry_points='''
[console_scripts]
celltics=celltics.main:cli
''',
)