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
|
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import io
from setuptools import setup, find_packages
setup(name='pysol_cards',
version='0.16.0',
description='Deal PySol FC Cards',
keywords='pysol_cards',
author='Shlomi Fish',
author_email='shlomif@cpan.org',
url='https://github.com/shlomif/pysol_cards',
license='3-clause BSD',
long_description=io.open(
'./docs/README.rst', 'r', encoding='utf-8').read(),
platforms='any',
zip_safe=False,
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=['Development Status :: 1 - Planning',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
entry_points={
'console_scripts': [
'pysol_cards = pysol_cards.__main__:main',
]
},
)
|