-
Notifications
You must be signed in to change notification settings - Fork 165
/
setup.py
41 lines (38 loc) · 1.17 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
from setuptools import setup
NAME = "b0mb3r"
DESCRIPTION = "Открытый и бесплатный СМС бомбер"
URL = "https://github.com/crinny/b0mb3r"
EMAIL = ""
AUTHOR = "crinny"
REQUIRES_PYTHON = ">=3.7.0"
VERSION = "2.1.0"
REQUIRED = ["aiohttp"]
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=DESCRIPTION,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=["b0mb3r"],
entry_points={
"console_scripts": [
"b0mb3r=b0mb3r.__main__:main",
"bomber=b0mb3r.__main__:main",
]
},
install_requires=REQUIRED,
extras_require={},
package_data={"b0mb3r": ["static/*", "templates/*", "services/*"]},
license="Mozilla Public License 2.0",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)