forked from ElArkk/jax-unirep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.47 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
40
41
42
43
44
45
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
with open("jax_unirep/version.py") as fp:
version = fp.read().split('"')[1]
setup(
name="jax_unirep",
author="Arkadij Kummer, Eric J. Ma, Ivan Jayapurna",
description="A performant and user-friendly reimplementation of UniRep in JAX.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ElArkk/jax-unirep",
version=version,
packages=["jax_unirep"],
package_data={
"jax_unirep": ["weights/uniref50/*/*.pkl"],
},
install_requires=[
"jax",
"jaxlib",
"multipledispatch",
"numpy",
"optuna",
"scikit-learn",
"tqdm",
],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
],
python_requires=">=3.6",
)