-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.01 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.01 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
#!/usr/bin/env python3
# -*- coding:utf8 -*-
import setuptools
from kmerexplor import info
setuptools.setup(
name = 'kmerexplor',
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/KmerExploR",
packages = setuptools.find_packages(),
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Natural Language :: English',
'Intended Audience :: Science/Research',
],
entry_points = {
'console_scripts': [
'kmerexplor = kmerexplor.core:main',
],
},
include_package_data = True,
install_requires=['PyYAML', 'markdown'],
python_requires = ">=3.6",
licence = "GPLv3"
)