-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 741 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 741 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
28
29
30
31
32
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
setup(
name="Opac Schema",
version='2.10.1',
description="Schema of SciELO OPAC",
author="SciELO",
author_email="dev@scielo.org",
license="BSD",
url="https://github.com/scieloorg/opac_schema",
packages=find_packages(),
keywords='opac schema',
maintainer_email='dev@scielo.org',
download_url='',
classifiers=[],
install_requires=[
"blinker",
"mongoengine",
"python-slugify",
"legendarium",
],
tests_require=[
"mongomock"
],
dependency_links=[],
test_suite='tests.discover_suite'
)