-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (41 loc) · 1.33 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
47
48
#!/usr/bin/env python3
"""Setup module.
A way to install this:
python3 setup.py bdist_wheel
pip3 install dist/py_nf-0.1.0-py3-none-any.whl
Load to test-pypi:
python3 setup.py sdist bdist_wheel
python3 -m twine upload --repository testpypi dist/*
Install from test-pypi:
pip install -i https://test.pypi.org/simple/ py-nf==0.1.0 --user
"""
from setuptools import find_packages, setup
import os
CURRENT_DIR = os.path.dirname(__file__)
__author__ = "Bogdan Kirilenko"
with open("README.md", "r") as f:
long_description = f.read()
with open("py_nf/version.py", "r") as f:
version = {}
exec(f.read(), version)
__version__ = version["__version__"]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
setup(name="py_nf",
packages=find_packages(include=["py_nf"]),
version=__version__,
description="Execute batches of jobs with nextflow",
long_description=long_description,
long_description_content_type="text/markdown",
url="/~https://github.com/kirilenkobm/py_nf",
author=__author__,
author_email="kirilenkobm@gmail.com",
license="MIT",
classifiers=classifiers,
maintainer="Bogdan Kirilenko",
)