-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 1.25 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
import re
from setuptools import setup
with open('blackjack21/__init__.py', 'r') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='blackjack21',
version=version,
description='A complete package for blackjack, with no players limit on a table, double down, and split features too.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://blackjack21.rtfd.io/en/latest/',
project_urls={
'Documentation': 'https://blackjack21.rtfd.io/en/latest/',
'Source': 'https://github.com/rahul-nanwani/blackjack21/',
'Tracker': 'https://github.com/rahul-nanwani/blackjack21/issues'
},
author='Rahul Nanwani',
author_email='[email protected]',
license='MIT',
packages=['blackjack21'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Games/Entertainment'
],
install_requires=[],
)