-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 908 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
## Open Data Catalog (odcatalog)
## Mezzanine-powered data catalog management application
##--------------------------------------------------------------------
import sys
from pkg_resources import normalize_path
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
version = '0.1'
install_requires = [
"mezzanine",
"south",
]
setup(
name='mezzanine-odcatalog',
version=version,
packages=find_packages(),
url='',
license='Apache License, Version 2.0',
author='Samuele Santi',
author_email='[email protected]',
description='Simple Open Data catalog management application',
long_description='Simple Open Data catalog management application',
install_requires=install_requires,
classifiers=[
"Programming Language :: Python :: 2.7",
],
package_data={'': ['README.rst', 'LICENSE']},
)