-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (41 loc) · 1.13 KB
/
setup.py
File metadata and controls
43 lines (41 loc) · 1.13 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="adaptesting", # Your package name
version="0.0.1",
author="Xunye Tian",
author_email="xunyetian.ml@gmail.com",
description="A toolbox to directly access to various two-sample testing methods.",
long_description=long_description,
long_description_content_type="text/markdown",
package_dir={"": "src"},
packages=find_packages(where="src"),
# url="",
install_requires=[
"torch",
"torchvision",
"numpy",
"matplotlib",
"pandas",
"autogluon.tabular",
"typing",
"jax",
"pytorch_tabnet",
"transformers",
"einops",
"datasets<4.0.0",
"torchattacks",
],
classifiers=[
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
extra_require={
"dev": [
"twine",
]
},
python_requires=">=3.9",
)