-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (45 loc) · 1.36 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import os
from setuptools import setup
ROOT = os.path.abspath(os.path.dirname(__file__))
with open('README.md') as f:
readme = f.read()
about = {}
with open(os.path.join(ROOT, 'synquiz', '__version__.py')) as f:
exec(f.read(), about)
setup(
name=about['__name__'],
version=about['__version__'],
description='An overly complex pubquiz generator',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/hjalti/synquiz',
author=about['__author__'],
author_email=about['__author_email__'],
license=about['__version__'],
packages=['synquiz'],
package_data={'synquiz': ['data/*.html']},
python_requires='>=3.6.0',
install_requires=[
'pyyaml',
'mako',
'watchdog',
'filetype',
'requests',
],
entry_points={
'console_scripts': [
'synquiz=synquiz:main',
],
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Games/Entertainment',
]
)