-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (29 loc) · 907 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
'numpy'
]
setuptools.setup(
name="assembly_stats",
version="0.1.4",
author="Mike Trizna",
author_email="[email protected]",
description="Calculates both scaffold and contig statistics (N50, L50, etc.) from a scaffold FASTA file.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MikeTrizna/assembly_stats",
packages=setuptools.find_packages(),
install_requires=requirements,
entry_points={
'console_scripts': [
'assembly_stats=assembly_stats.cli:cli'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
# Pick your license as you wish
'License :: OSI Approved :: MIT License',
],
)