-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.08 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.08 KB
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
#!/usr/bin/env python3
import setuptools
from kmerator import info
setuptools.setup(
name = 'kmerator',
version = info.VERSION,
author = info.AUTHOR,
author_email = info.AUTHOR_EMAIL,
description = info.SHORTDESC,
long_description = open('README.md').read(),
long_description_content_type = "text/markdown",
url="https://github.com/Transipedia/kmerator",
packages = setuptools.find_packages(),
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
entry_points = {
'console_scripts': [
'kmerator = kmerator.kmerator:main',
],
},
include_package_data = True,
install_requires=['bs4', 'lxml', 'requests'],
python_requires = ">=3.7",
licence = "GPLv3"
)