forked from benmoran56/esper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 1.19 KB
/
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
from setuptools import setup
with open('esper/__init__.py') as f:
info = {}
for line in f.readlines():
if line.startswith('version'):
exec(line, info)
break
README = open('README.rst').read()
setup(name='esper',
version=info['version'],
author='Benjamin Moran',
author_email='[email protected]',
description="esper is a lightweight Entity System (ECS) for Python, with a focus on performance.",
long_description=README,
license='MIT',
keywords='ecs,entity component system,game',
url='https://github.com/benmoran56/esper',
download_url='https://github.com/benmoran56/esper/releases',
platforms='POSIX, Windows, MacOS X',
packages=['esper'],
package_data={'esper': ['py.typed']},
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries"])