-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (32 loc) · 1.06 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 python3
from setuptools import setup
setup(
name='cartuli',
version='0.1.0b3',
description="A tool to create print and play card games",
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Games/Entertainment :: Board Games',
'Typing :: Typed'
],
keywords='PnP card board game print',
author='Pablo Muñoz',
author_email='[email protected]',
url='https://github.com/pablerass/cartuli',
license='LGPLv3',
entry_points={
'console_scripts': [
'cartuli=cartuli.__main__:main',
],
},
packages=['cartuli'],
install_requires=[line for line in open('requirements.txt')],
python_requires='>=3.10'
)