-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 910 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name='Rocamgo',
version=0.2,
description='Rocamgo is recogniter of the go games by processing digital images with opencv',
long_description='Rocamgo is recogniter of the go games by processing digital images with opencv extended',
author='Victor Ramirez de la Corte',
author_email='virako.9@gmail.com',
url='https://github.com/virako/Rocamgo-ng',
download_url='https://github.com/Virako/Rocamgo-ng/archive/master.zip',
license='GPLv3',
packages=find_packages(exclude=['tests']),
test_suite='tests',
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: Spanglish',
'Operating System :: Linux',
'Programming Language :: Python',
],
)