-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
46 lines (40 loc) · 1.57 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
41
42
43
44
45
46
import setuptools
import sys
from os import path
if sys.version_info < (3, 6):
sys.exit(f'Python < 3.6 will not be supported.')
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
PACKAGE: str = 'sample_sheet'
setuptools.setup(
name='sample-sheet',
version='0.13.0',
author='clintval',
author_email='valentine.clint@gmail.com',
description='An Illumina Sample Sheet parsing library',
url='https://github.com/clintval/sample-sheet',
download_url=f'https://github.com/clintval/sample-sheet/archive/0.13.0.tar.gz',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
zip_safe=True,
packages=setuptools.find_packages(),
install_requires=['click', 'requests', 'tabulate', 'terminaltables'],
extras_require={'smart_open': ['smart_open>=1.5.4']},
scripts=['scripts/sample-sheet'],
keywords='illumina samplesheet sample sheet parser bioinformatics',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
project_urls={
'Documentation': 'https://sample-sheet.readthedocs.io',
'Issue-Tracker': 'https://github.com/clintval/sample-sheet/issues',
},
)