-
Notifications
You must be signed in to change notification settings - Fork 68
/
setup.py
29 lines (27 loc) · 910 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
29
#/usr/bin/env python
import os
from setuptools import setup, find_packages
ROOT_DIR = os.path.dirname(__file__)
SOURCE_DIR = os.path.join(ROOT_DIR)
setup(
name = "django-zebra",
description = "Library for Django and Stripe",
author = "Steven Skoczen",
author_email = "steven@agoodcloud.com",
url = "https://github.com/GoodCloud/django-zebra",
version = "0.4.5",
packages = find_packages(),
zip_safe = False,
include_package_data=True,
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)