-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 728 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 728 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 distutils.core import setup
from pkgutil import walk_packages
import orml
def find_packages(path, prefix=""):
yield prefix
prefix = prefix + "."
for _, name, ispkg in walk_packages(path, prefix):
if ispkg:
yield name
setup(
name = 'django-orml',
packages = list(find_packages(orml.__path__, orml.__name__)),
version = '0.1.6',
description = 'Django Object Relational Mapping Language',
author = 'Matt Roberts',
author_email = 'contact@maleero.com',
url = 'https://github.com/malero/django-orml',
download_url = 'https://github.com/malero/django-orml/archive/v0.1.1.tar.gz',
keywords = ['django', 'orm', 'ply'],
classifiers = [],
install_requires=['ply==3.10',],
)