-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (52 loc) · 1.45 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
51
52
53
54
55
56
57
import os
import re
from codecs import open
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
long_description_content_type = "text/markdown"
VERSION = "1.0.0"
setup(
name="ipd",
version=VERSION,
description="An IPD - Image Push and Deploy",
long_description=long_description,
long_description_content_type=long_description_content_type,
url="https://github.com/13hakta/ipd/",
author="Vitaly Chekryzhev",
author_email="[email protected]",
license="Proprietary",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: System :: Networking :: Monitoring",
"Typing :: Typed",
],
project_urls={
"Source": "https://github.com/13hakta/ipd/",
},
packages=find_packages(
include=[
"ipd",
"ipd.*",
]
),
include_package_data=True,
entry_points={
"console_scripts": [
"ipd = ipd.ipd:main",
]
},
python_requires=">=3.6",
install_requires=[
"flask",
"waitress",
],
extras_require={
"dev": [],
},
)