-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 894 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
import re
import os
import sys
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('ABCParse/__version__.py') as v:
exec(v.read())
setuptools.setup(
name="ABCParse",
version=__version__,
python_requires=">3.9.0",
author="Michael E. Vinyard",
author_email="[email protected]",
url=None,
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
description="A better base class to automatically parse local args.",
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
license="MIT",
)