forked from niwinz/djorm-ext-pgbytea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 972 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
30
31
from setuptools import setup, find_packages
description="""
Core module of django orm extensions package. Is a collection of third party plugins build in one unified package.
"""
setup(
name = "djorm-ext-pgbytea",
version = '0.4.0',
url = 'https://github.com/niwibe/djorm-ext-pgbytea',
license = 'BSD',
platforms = ['OS Independent'],
description = description.strip(),
author = 'Andrey Antukh',
author_email = 'niwi@niwi.be',
maintainer = 'Andrey Antukh',
maintainer_email = 'niwi@niwi.be',
packages = find_packages(),
include_package_data = False,
install_requires = [],
zip_safe = False,
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)