forked from salzberg-lab/PSAURON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (41 loc) · 1.44 KB
/
setup.py
File metadata and controls
44 lines (41 loc) · 1.44 KB
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
40
41
42
43
44
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="psauron",
version="1.0.8",
description="A tool to assess protein coding gene annotation",
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Markusjsommer/psauron",
author="markus",
author_email = "markusjsommer@gmail.com",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
],
install_requires=["torch>=2.1.2",
"torchvision>=0.16.2",
"torchaudio>=2.1.2",
"typing-extensions>=4.9.0",
"tqdm>=4.66.1",
"scipy>=1.10.1",
"numpy>=1.24.4, <2",
"pandas",
"setuptools<81"],
extras_require={
"dev": ["pytest>=7.0", "twine>=4.0.2", "pytest-cov>=4.0", "wheel"],
},
python_requires=">=3.9, <3.13",
entry_points={
'console_scripts': [
'psauron = psauron.psauron:eye_of_psauron',
],
},
include_package_data=True,
package_data={'': ['/data/model_state_dict.pt']},
)