-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·62 lines (54 loc) · 2.3 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
61
62
#! /usr/bin/env python
#
# Copyright (C) 2019 Mikko Kotila
DESCRIPTION = "Gamified Deep Learning"
LONG_DESCRIPTION = """\
Gamify puts the researcher back in the driver's seat in modern deep
learning workflow by unlocking a new era of man-machine symbiosis
in artificial intelligence model development. As the mission matures,
developing state-of-the-art deep learning models will feel more like
playing a Real-Time Strategy Game.
"""
DISTNAME = 'gamify'
MAINTAINER = 'Mikko Kotila'
MAINTAINER_EMAIL = '[email protected]'
URL = 'http://autonom.io'
LICENSE = 'MIT'
DOWNLOAD_URL = 'https://github.com/autonomio/gamify/'
VERSION = '0.0.4'
try:
from setuptools import setup, find_packages
_has_setuptools = True
except ImportError:
from distutils.core import setup
install_requires = ['werkzeug==0.15.4',
'flask']
if __name__ == "__main__":
setup(name=DISTNAME,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license=LICENSE,
url=URL,
version=VERSION,
download_url=DOWNLOAD_URL,
packages=['gamify', 'gamify.static', 'gamify.templates'],
package_data={'gamify.static': ['*'], 'gamify.templates': ['*']},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
classifiers=['Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows :: Windows 10'])