-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 833 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 833 Bytes
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
from setuptools import setup, find_packages
setup(
name = "django-checkout",
version = "0.5.0",
author = "Dave Lowe",
author_email = "[email protected]",
description = "a Django app for handling subscriptions, orders and transactions",
long_description = open("README.mkd").read(),
license = "MIT",
url = "http://github.com/pullswitch/django-checkout",
packages = find_packages(),
install_requires = [
"django-form-utils==0.3.1",
"pytz"
],
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)