-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.09 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
33
34
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='CharActor',
version='1.0.2',
description='A module for creating and managing rpg characters.',
long_description=long_description,
long_description_content_type='text/markdown',
author='James Evans',
author_email='[email protected]',
url='https://github.com/primal-coder/CharActor',
packages=find_packages(),
install_requires=[
'dicepy',
'entyty',
'CharObj',
'getch',
'pyglet',
'pymunk'],
python_requires='>=3.8',
keywords='rpg character dnd d&d dungeons and dragons dungeons & dragons player character actor charactor',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Games/Entertainment :: Role-Playing',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8'
],
include_package_data=True,
package_data={'CharActor': ['_charactor/dicts/*.json']}
)