-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (34 loc) · 948 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
32
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
import codecs
from setuptools import setup
long_description = codecs.open("README.rst", "r", "utf-8").read()
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
]
import dbag
setup(
name='dbag',
version=dbag.__version__,
description=dbag.__doc__,
author=dbag.__author__,
author_email=dbag.__contact__,
url=dbag.__homepage__,
long_description=long_description,
packages=['dbag'],
license='BSD',
platforms=['any'],
classifiers=CLASSIFIERS,
install_requires=[
'nexus>=0.1.7',
'django-jsonfield',
'Django>=1.1',
],
test_suite='runtests.runtests',
include_package_data=True,
)