-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 955 Bytes
/
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
from setuptools import setup
setup(
name='briscas',
packages=['briscas'],
version='1.2',
description='Library to model the briscas card game.',
author='Bryan Collazo',
author_email='[email protected]',
license='MIT',
url='https://github.com/bcollazo/briscas',
download_url='https://github.com/bcollazo/briscas/archive/v1.2.tar.gz',
keywords=['briscas', 'card', 'game', 'terminal', 'naipes'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Topic :: Games/Entertainment',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=['six'],
entry_points={
'console_scripts': ['briscas=briscas.main:main']
}
)