-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 753 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 753 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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
try:
import ez_setup
ez_setup.use_setuptools()
except ImportError:
pass
from setuptools import setup, find_packages
setup(
name = "RollYourOwn",
version = "1.0.0dev1",
packages = find_packages(exclude=["docs*", "tests*", "examples*"]),
namespace_packages = ["rollyourown"],
install_requires = ['django>=1.0'],
author = "Will Hardy",
author_email = "rollyourown@hardysoftware.com.au",
description = "A series frameworks to ease development of hand rolled django applications.",
long_description = open('README.txt').read(),
license = "LICENSE.txt",
keywords = "ecommerce, django, framework",
url = "http://rollyourown.hardysoftware.com.au/",
)