-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (50 loc) · 1.67 KB
/
setup.py
File metadata and controls
56 lines (50 loc) · 1.67 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
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import find_packages, setup
PROJECT_URL = "https://github.com/danielstaps/SupervisedVectorQuantizationOCC"
DOWNLOAD_URL = "https://github.com/danielstaps/SupervisedVectorQuantizationOCC.git"
with open("README.md", "r") as fh:
long_description = fh.read()
INSTALL_REQUIRES = [
"prototorch_models",
"pandas",
"matplotlib",
]
DATASETS = [
"tensorflow-datasets",
"tensorflow",
]
ALL = INSTALL_REQUIRES + DATASETS
setup(
name="prototorch_oneclass",
version="0.0.1",
author="Daniel Staps",
author_email="staps@hs-mittweida.de",
description="Implementation of Supervised Vector Quantization OCC",
long_description=long_description,
long_description_content_type="text/markdown",
url=PROJECT_URL,
download_url=DOWNLOAD_URL,
python_requires=">=3.6",
install_requires=INSTALL_REQUIRES,
extras_require={
"datasets": DATASETS,
"all": ALL,
},
packages=find_packages(),
classifiers=[
"Environment :: Console",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
zip_safe=False,
)