-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 911 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
25
26
27
28
from setuptools import setup, find_packages
import os
VERSION = os.getenv('VERSION', '0.3')
setup(
name = "django_versioned",
version = VERSION,
author = "Sheepdog",
author_email = "[email protected]",
description = ("Django Versioning App"),
license = "BSD",
keywords = "versioning django versioned",
url = "https://github.com/SheepDogInc/django-versioned",
packages=find_packages(),
include_package_data=True,
classifiers=
[
"Environment :: Web Environment",
"Framework :: Django",
"License :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)