-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (34 loc) · 1.15 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
"""
neuralplexer_benchmarks
"""
from setuptools import find_packages, setup
import versioneer
tests_require = ["pytest", "pytest-asyncio", "pytest-cov"]
setup(
# Self-descriptive entries which should always be present
name="neuralplexer_benchmarks",
author="Iambic Therapeutics",
author_email="[email protected]",
url="www.iambic.ai",
description="For benchmarking NeuralPLexer and related Biomolecular Structure Prediction models.",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license="BSD 3-Clause",
packages=[package for package in find_packages() if package.startswith("neuralplexer_benchmarks")],
include_package_data=True,
install_requires=[], # Not used
extras_require={
"tests": tests_require,
},
platforms=['Linux',
'Mac OS-X',
# 'Unix',
'Windows'], # Valid platforms your code works on, adjust to your flavor
python_requires=">=3.12", # Python version restrictions
zip_safe=False,
entry_points={
"console_scripts": [
"np-bench = neuralplexer_benchmarks.cli:app",
],
},
)