-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.02 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.02 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
import setuptools
from mkprobe import info
setuptools.setup(
name = 'mkprobe',
version = info.VERSION,
author = info.AUTHOR,
author_email = info.CONTACT,
description = info.SHORTDESC,
long_description = open('README.md').read(),
long_description_content_type = "text/markdown",
url="https://github.com/bio2m/mkprobe",
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': [
'mkprobe = mkprobe.main:main',
],
},
# ~ include_package_data = True,
python_requires = ">=3.8",
licence = "GPLv3"
)