-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (40 loc) · 1.11 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
"""
Setup module.
"""
from setuptools import setup
from ommr import __version__
setup(
name='ommr',
version=__version__,
description='A simple Micromouse Maze Simulator server',
long_description='''Take an image of a micromouse maze setup and convert
it to the standard micromouse maze text format.''',
url='https://github.com/Theseus/ommr',
author='Miguel Sánchez de León Peque',
author_email='[email protected]',
license='BSD License',
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
],
keywords='micromouse optical maze server recognition',
entry_points={
'console_scripts': [
'ommr = ommr.commands:run',
],
},
packages=['ommr'],
install_requires=[
'click',
'imageio',
'numpy',
'scipy',
],
extras_require={
'test': ['tox'],
},
)