comparison clipkit_repo/docs/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 here = path.abspath(path.dirname(__file__))
5
6 with open(path.join(here, "README.md"), encoding="utf-8") as f:
7 long_description = f.read()
8
9 CLASSIFIERS = [
10 'Operating System :: OS Independent',
11 'Intended Audience :: Science/Research',
12 'Programming Language :: Python',
13 'Programming Language :: Python :: 3.6',
14 'Programming Language :: Python :: 3.7',
15 'Programming Language :: Python :: 3.8',
16 'Topic :: Scientific/Engineering',
17 ]
18
19 REQUIRES = ["biopython==1.76", "numpy==1.18.2", "tqdm==4.45.0"]
20
21 setup(
22 name="clipkit",
23 description="Alignment trimming software for phylogenetics.",
24 long_description=long_description,
25 long_description_content_type="text/markdown",
26 author="Jacob L. Steenwyk",
27 author_email="jlsteenwyk@gmail.com",
28 url="https://github.com/jlsteenwyk/clipkit",
29 packages=["clipkit"],
30 classifiers=CLASSIFIERS,
31 entry_points={"console_scripts": ["clipkit = clipkit.clipkit:main"]},
32 version="0.1.3",
33 include_package_data=True,
34 install_requires=REQUIRES,
35 )