forked from Nikita321123321123/b0mb3r
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (43 loc) · 1.37 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
from setuptools import setup
NAME = "b0mb3r"
DESCRIPTION = "Открытый и бесплатный СМС бомбер"
URL = "https://github.com/crinny/b0mb3r"
EMAIL = ""
AUTHOR = "crinny"
REQUIRES_PYTHON = ">=3.7.0"
VERSION = "3.1.1"
with open("requirements.txt", encoding="utf-8") as f:
REQUIRED = f.readlines()
try:
with open("README.md", encoding="utf-8") as f:
long_description = "\n" + f.read()
except FileNotFoundError:
long_description = DESCRIPTION
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.cli:main", "bomber=b0mb3r.cli:main"]
},
install_requires=REQUIRED,
extras_require={},
package_data={"b0mb3r": ["services/*", "app/*", "app/*/*", "app/static/*/*"]},
license="Mozilla Public License 2.0",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Operating System :: Android",
"Operating System :: Microsoft :: Windows",
"Topic :: Internet",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
],
)