-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
52 lines (49 loc) · 1.72 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
import sys
from setuptools import setup
if sys.version_info[0] < 3:
with open("README.md") as f:
README = f.read()
else:
with open("README.md", encoding="utf-8") as f:
README = f.read()
setup(
name="djeasy",
version="2.0.2",
author="Ali Yaman",
author_email="aliymn.db@gmail.com",
description="Django Deploy on Server",
license="MIT",
long_description_content_type="text/markdown",
long_description=README,
keywords="django deploy on server",
packages=["djeasy", "djeasy/client", "djeasy/package"],
url="https://github.com/AliYmn/djeasy",
download_url="https://github.com/AliYmn/djeasy",
install_requires=[
"termcolor",
"validators",
],
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
entry_points={"console_scripts": ["djeasy=djeasy.client.management:main"]},
)