-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (29 loc) · 968 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
29
30
31
32
33
34
"""
Package setup.
This file is used to package the whole project.
"""
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='42Points',
version='1.2.7',
author='Tony Xiang',
author_email='tonyxfy@qq.com',
description='Python implementation of the fourty-two points game.',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/T0nyX1ang/42-Points-Game',
packages=setuptools.find_packages(include=['ftptsgame']),
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
python_requires='>=3.5',
)