-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1020 Bytes
/
setup.py
File metadata and controls
37 lines (35 loc) · 1020 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
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
readme = fh.read()
setup(
name='thePyMillion',
version="1.2.0",
description='Um jogo do milhão sobre python feito em python',
long_description=readme,
long_description_content_type="text/markdown",
url='https://github.com/AlfredoAndrade14/PyMillion',
author='Alfredo Vasconcelos de Andrade e André Araújo Alves',
author_email='[email protected]',
license='MIT',
keywords=[
'jogo',
'game',
'Jogo do milhão',
'retro',
'quiz'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(),
install_requires=['pygame>=2.0'],
python_requires='>=3.6',
include_package_data=True,
entry_points={
'console_scripts': [
'pymillion=PyMillion.main:run'
]
}
)