-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (29 loc) · 921 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
# -*- coding: utf-8 -*-
import setuptools
import os
from io import open
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
readme_contents = f.read()
setuptools.setup(
name='pressgloss',
version='0.0.1',
description='pressgloss library',
long_description=readme_contents,
long_description_content_type='text/x-rst',
author='Joshua Powers',
author_email='[email protected]',
install_requires=['flask'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Diplomacy Players',
'Topic :: Analytics',
'Programming Language :: Python :: 3.7'
],
keywords='analytics',
packages=setuptools.find_packages(),
package_data={'':['resources/*.csv']},
include_package_data=True,
python_requires='>=3.7',
entry_points = {'console_scripts': ['pressgloss=pressgloss.__main__:main']}
)