-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
42 lines (39 loc) · 1.2 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
from setuptools import setup, find_packages
from stopots_bot import __author__, __version__, __email__
with open('requirements.txt') as r:
requirements = r.readlines()
with open('README.md', encoding='utf-8') as ld:
long_description = ld.read()
setup(
name='stopots-bot',
version=__version__,
packages=find_packages(),
url='https://github.com/Lucas8x/stopots-bot',
license='MIT',
author=__author__,
author_email=__email__,
description='auto play stopots',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=requirements,
include_package_data=True,
package_data={'': ['dictionary.json']},
zip_safe=False,
python_requires='>=3.9',
entry_points={
'console_scripts': [
'stopots = stopots_bot.start:start'
]
},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: Portuguese (Brazilian)'
],
)