-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (37 loc) · 1.16 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='dnazip-bioinfo',
version='0.2',
description='A Python implementation of the Burros-Wheeler and Huffman coding algorithms',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/dabane-ghassan/dnazip',
author='dabane-ghassan',
author_email = 'dabane.ghassan@gmail.com',
download_url = 'https://github.com/dabane-ghassan/dnazip/archive/v0.2.tar.gz',
license='MIT',
packages=setuptools.find_packages(include=['dnazip', 'dnazip.*']),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
#install_requires=REQUIREMENTS,
extras_require={
'dev': [
'pytest >= 6.0.0',
'pytest-cov >= 2.10.0',
'coveralls >= 2.1.2',
'flake8 >= 3.8.0',
'mock >= 4.0.0',
]
},
entry_points={
'gui_scripts': [
'dnazip=dnazip.main:main'
]
},
python_requires='>=3.6',
)