-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 990 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
from distutils.core import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(name='project_od-AntDum',
version='1.1.0',
description='Tools for making game with pygame',
author='AntDum',
long_description=long_description,
long_description_content_type="text/markdown",
author_email='',
url='https://github.com/AntDum/project_od',
project_urls={
"Bug Tracker": "https://github.com/AntDum/project_od/issues",
"Source": 'https://github.com/AntDum/project_od'
},
packages=['project_od', 'project_od.gui', 'project_od.particule', 'project_od.screen', 'project_od.physics', 'project_od.map', 'project_od.ia', 'project_od.ressources'],
requires=['pygame'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10"
)