-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (29 loc) · 1.09 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
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
setup(
name='minimax_kata',
version='1.0.0',
author='James Christie',
author_email='[email protected]',
url='',
download_url='',
description='A kata for the minimax algorithm',
long_description='A kata for the minimax algorithm',
packages = find_packages(),
include_package_data = True,
package_data = { 'minimax_kata': ['minimax_kata/*'] },
exclude_package_data = { '': ['README.txt'] },
keywords='python kata minimax',
license='GPL',
classifiers=['Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
],
install_requires = ['setuptools'],
)