-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 1.1 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
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='scaffold3C',
description='Compute the order and orientation of assembly contigs using Hi-C sequencing data.',
long_description=long_description,
version='0.2',
author='Matthew Z DeMaere',
author_email='[email protected]',
platforms='Linux-86_x64',
packages=setuptools.find_packages(),
url='https://github.com/cerebis/scaffold3C',
license='GNU Affero General Public License v3',
install_requires=['proxigenomics_toolkit @ git+https://github.com/cerebis/proxigenomics_toolkit@extraction#egg=proxigenomics_toolkit'],
classifiers=[
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Development Status :: 2 - Pre-Alpha'
],
entry_points={
'console_scripts': ['scaffold3C=scaffold3C.command_line:main'],
}
)