-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
40 lines (31 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
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2015 by Gaik Tamazian
# gaik (dot) tamazian (at) gmail (dot) com
import chromosomer
from setuptools import setup, find_packages
setup(name='chromosomer',
version=chromosomer.__version__,
description='Reference-assisted chromosome assembly tool',
author='Gaik Tamazian',
author_email='[email protected]',
license='MIT',
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
packages=find_packages(exclude=['doc', 'tests*']),
install_requires=['pyfaidx',
'future',
'bioformats'],
entry_points={
'console_scripts': [
'chromosomer = chromosomer.cli:chromosomer']
},
)