forked from OrderAndCh4oS/Python-Rummy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 871 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 871 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
25
26
27
28
29
# coding=utf-8
from setuptools import setup, find_packages
readme = open('README.md', 'r')
README_TEXT = readme.read()
readme.close()
setup(
name='rummy',
version='1.1.8',
url='https://github.com/sarcoma/Python-Rummy',
license='MIT',
author='sarcoma',
author_email='sean@orderandchaoscreative.com',
description='Console Rummy game',
long_description=README_TEXT,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': ['rummy=rummy.__main__:main'],
},
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
package_data={'rummy':"templates/*.txt"},
include_package_data=True,
install_requires=['colorama', 'text_template', 'ansi_colours'],
project_urls={
'Order & Chaos Creative': 'https://orderandchaoscreative.com',
},
python_requires='>=3.5'
)