-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (29 loc) · 1.03 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
import os
import sys
from setuptools import setup, find_packages
pwd = os.path.abspath(os.path.dirname(__file__))
sys.path.append(pwd)
try:
import nuclai.__main__ as nuclai
VERSION = nuclai.__version__
except ImportError as e:
VERSION = 'N/A'
setup(name='nuclai',
version=VERSION,
description='Cross-platform Installer & Runner for nucl.ai tutorials and excercises.',
author='Alex J. Champandard',
url='https://github.com/aigamedev/nuclai-installer',
long_description=open(os.path.join(pwd, 'README.rst')).read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.4',
'License :: Free For Home Use',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
license='GNU GPLv3',
scripts=['scripts/nuclai', 'scripts/nuclai.bat'],
packages=find_packages(),
include_package_data=True,
install_requires=[
'colorama' if sys.platform == 'win32' else '',
])