-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 944 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
from setuptools import setup, find_packages
from sr_amr.version import __version__
with open("README.md", "r") as desc_file:
long_description = desc_file.read()
setup(
name="ALPAR",
version=__version__,
description="Automated Learning Pipeline for Antimicrobial Resistance",
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
author="Alper Yurtseven",
maintainer="Alper Yurtseven",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
packages=find_packages(),
# setup_requires=['setuptools_scm'],
include_package_data=False,
install_requires=[],
package_data={},
python_requires="==3.9.*",
keywords="bioinformatics",
)