-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·60 lines (57 loc) · 1.82 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
NAME = "animus"
DESCRIPTION = "Animus is a minimalistic framework to run machine learning experiments."
URL = "https://github.com/Scitator/animus"
EMAIL = "[email protected]"
AUTHOR = "Sergey Kolesnikov"
REQUIRES_PYTHON = ">=3.6.0"
PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__))
here = os.path.dirname(os.path.abspath(__file__))
setup(
name=NAME,
version="0.0.2",
url=URL,
download_url=URL,
description=DESCRIPTION,
license="Apache License 2.0",
author=AUTHOR,
author_email=EMAIL,
long_description=open(os.path.join(here, "README.md")).read(),
long_description_content_type="text/markdown",
python_requires=REQUIRES_PYTHON,
packages=find_packages(
exclude=(
"bin",
"examples",
"tests",
)
),
install_requires=[],
include_package_data=True,
keywords=[
"Machine Learning",
"Deep Learning",
],
classifiers=[
"Natural Language :: English",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
# Audience
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
# Topics
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
# Programming
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)