-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 820 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (34 loc) · 820 Bytes
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
from setuptools import find_packages, setup
setup(
name="tmkit",
version="0.0.6",
keywords=["pip", "tmkit"],
description="TMKit",
long_description="TMKit",
license="GNU GENERAL V3.0",
url="https://github.com/2003100127/tmkit",
author="Jianfeng Sun",
author_email="jianfeng.sun@ndorms.ox.ac.uk",
packages=find_packages(),
include_package_data=True,
package_data={
"": [".env", "*.pl"],
},
platforms="any",
python_requires=">3=.10",
install_requires=[
"scikit-learn",
"pandas",
"numpy",
"openpyxl",
"biopandas",
"xmltramp2==3.1.1",
"biopython==1.79",
"pyfiglet==0.8.post1",
],
entry_points={
'console_scripts': [
'tmkit=tmkit.main:main',
],
}
)