-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (40 loc) · 1.26 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
# Standard Library
import os
import sys
# 3rd-party
from setuptools import find_packages
from setuptools import setup
version = "0.1.10"
setup(
name="djenvrep",
version=version,
description="Report the environment of your django installation.",
long_description=(open("README.md").read() + "\n"),
classifiers=[
"Framework :: Django",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.9",
#'Development Status :: 5 - Production/Stable',
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords="django",
author="Christian Ledermann",
author_email="christian.ledermann@gmail.com",
url="https://github.com/PrimarySite/django-environment-report",
license="MIT",
packages=find_packages(exclude=["testproj"]),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
"Django",
],
entry_points="""
# -*- Entry points: -*-
""",
)