forked from fako/dgconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 845 Bytes
/
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
import setuptools
setuptools.setup(
name="dgconfig",
version="0.0.1",
author="Fako Berkers",
author_email="[email protected]",
description="A configuration package for Django to store configurations in the database and/or transfer them to for instance Celery",
long_description="A configuration package for Django to store configurations in the database and/or transfer them to for instance Celery",
long_description_content_type="text/markdown",
url="https://github.com/edubadges/dgconfig",
packages=setuptools.find_packages(),
install_requires=[
"Django>=1.11"
],
python_requires="~=2.7",
include_package_data=True,
classifiers=(
"Programming Language :: Python :: 2",
"License :: OSI Approved :: MIT",
"Operating System :: OS Independent",
),
)