-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (35 loc) · 1.12 KB
/
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
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
# @Time : 2022/9/25 21:00
# @Author : Zhongyi Hua
# @FileName: setup.py.py
# @Usage:
# @Note:
# @E-mail: [email protected]
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
__version__ = "0.2.6"
setuptools.setup(
name="IdenDSS",
version=__version__,
author="Zhongyi Hua",
author_email="[email protected]",
description="DNA Signature Sequence (DSS) Identification and Application Software",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Hua-CM/IdenDSS",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
install_requires=[
"biopython>=1.78",
"pandas>=1.0.0",
"numpy>=1.20.0"],
include_package_data=True,
entry_points={'console_scripts': ['IdenDSS = IdenDSS.IDSS:main']},
package_dir={'': "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.8",
)