forked from TheCheapestPixels/wecs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 1002 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
35
36
"""A setuptools based setup module.
"""
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='wecs',
version='0.2.0a',
description='An ECS (entity component system)',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/TheCheapestPixels/wecs',
author='TheCheapestPixels',
author_email='TheCheapestPixels@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.7',
],
keywords='ecs panda3d',
packages=find_packages(exclude=['tests', 'examples']),
python_requires='>=3.7, <4',
install_requires=[],
extras_require={
'panda3d': ['panda3d', 'cefpanda', 'jinja2'],
'graphviz': ['graphviz'],
'bobthewizard': ['crayons'],
},
)