-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 1.05 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
import setuptools
import truthsayer
setuptools.setup(
name='truthsayer',
version=truthsayer.__version__,
packages=['truthsayer',],
license='MIT',
description = 'Visualizes and manages Dune the Board Game state',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author = 'Marek Narozniak',
author_email = 'marek.yggdrasil@gmail.com',
install_requires=['pillow', 'qrcode', 'beautifulsoup4==4.8.1', 'simpleai', 'brackette', 'shapely', 'pareto'],
url = 'https://github.com/marekyggdrasil/truthsayer',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['assets/__init__.py', 'assets/json_files/__init__.py', 'assets/*.png', 'assets/*.ttf', 'assets/*.json', 'assets/json_files/*.json'],
}
)