-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 989 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
from setuptools import setup, find_packages
with open("README.md", "r") as file:
long_description = file.read()
setup(
name='entyty',
version='0.0.43',
description='A Python library for creating and managing entities.',
long_description=long_description,
long_description_content_type="text/markdown",
author='James Evans',
author_email='[email protected]',
url='https://github.com/primal-coder/entyty',
packages=find_packages(),
install_requires=['pyglet'],
python_requires='>=3.7',
license='MIT',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Games/Entertainment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
keywords='entity game development grid'
)