Mercurial > repos > padge > clipkit
comparison clipkit_repo/setup.py @ 2:e9cf321ee7be draft
"planemo upload for repository https://github.com/jlsteenwyk/clipkit commit cbe1e8577ecb1a46709034a40dff36052e876e7a-dirty"
author | padge |
---|---|
date | Fri, 25 Mar 2022 17:33:41 +0000 |
parents | 49b058e85902 |
children |
comparison
equal
deleted
inserted
replaced
1:535881934a1a | 2:e9cf321ee7be |
---|---|
1 from os import path | |
2 from setuptools import setup | |
3 | |
4 from clipkit.version import __version__ | |
5 | |
6 here = path.abspath(path.dirname(__file__)) | |
7 | |
8 with open(path.join(here, "README.md"), encoding="utf-8") as f: | |
9 long_description = f.read() | |
10 | |
11 CLASSIFIERS = [ | |
12 'Operating System :: OS Independent', | |
13 'Intended Audience :: Science/Research', | |
14 'Programming Language :: Python', | |
15 'Programming Language :: Python :: 3.6', | |
16 'Programming Language :: Python :: 3.7', | |
17 'Programming Language :: Python :: 3.8', | |
18 'Programming Language :: Python :: 3.9', | |
19 'Topic :: Scientific/Engineering', | |
20 ] | |
21 | |
22 REQUIRES = ["biopython>=1.79", "numpy>=1.18", "tqdm>=4.45", "cython"] | |
23 | |
24 setup( | |
25 name="clipkit", | |
26 description="Alignment trimming software for phylogenetics.", | |
27 long_description=long_description, | |
28 long_description_content_type="text/markdown", | |
29 author="Jacob L. Steenwyk", | |
30 author_email="jlsteenwyk@gmail.com", | |
31 url="https://github.com/jlsteenwyk/clipkit", | |
32 packages=["clipkit"], | |
33 classifiers=CLASSIFIERS, | |
34 entry_points={"console_scripts": ["clipkit = clipkit.clipkit:main"]}, | |
35 version=__version__, | |
36 include_package_data=True, | |
37 install_requires=REQUIRES, | |
38 ) | |
39 | |
40 ## push new version to pypi | |
41 # rm -rf dist | |
42 # python3 setup.py sdist bdist_wheel --universal | |
43 # twine upload dist/* -r pypi |