-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (19 loc) · 681 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (19 loc) · 681 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
#!/usr/bin/env python
from distutils.core import setup
version = '0.6'
packages = ['ctbRA']
scripts = ['ctbRA/assemble.py', 'ctbRA/ra2.py', 'ctbRA/scaffolder.py']
classifiers = ['Programming Language :: Python', 'Programming Language :: Python :: 3']
requirements = ['ctbBio']
setup(name='ReAssemble',
author='Chris Brown',
author_email='ctb@berkeley.edu',
packages=packages,
scripts=scripts,
version=version,
license='MIT',
url='https://github.com/christophertbrown/fix_assembly_errors',
description='scripts for microbial genome sequence curation',
install_requires=requirements,
classifiers=classifiers
)