-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·33 lines (29 loc) · 1014 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
#!/usr/bin/env python
import io
from setuptools import setup, find_packages
VERSION = '0.2.0'
with io.open('README.md', encoding='utf-8') as f:
readme = f.read()
with io.open('LICENSE', encoding='utf-8') as f:
license = f.read()
setup(
name='stranding',
version=VERSION,
url='https://github.com/23andMe/stranding',
download_url='https://github.com/23andMe/stranding/tarball/%s' % VERSION,
author='23andMe Engineering',
author_email='[email protected]',
description='Determine genome stranding for sequences mapped to a human reference assembly',
entry_points={'console_scripts': []},
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=['seqseek', 'biopython'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
]
)