-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·35 lines (33 loc) · 930 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
#! /usr/bin/env python3
from setuptools import setup
from dictorm.dictorm import __version__, __doc__ as ddoc
config = {
'name': 'dictorm',
'version': str(__version__),
'author': 'rolobio',
'author_email': 'rolobio+dictorm@rolobio.com',
'description': ddoc,
'license': 'Apache2',
'keywords': 'psycopg2 dictionary python dict',
'url': 'https://github.com/rolobio/DictORM',
'packages': [
'dictorm',
],
'long_description': ddoc,
'classifiers': [
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
],
'setup_requires': ['green>=2.12.0'],
'tests_require': [
'coverage',
'coveralls',
'green>=2.12.0',
'psycopg2-binary',
],
'extras_require': {
'Postgresql': ['psycopg2-binary'],
'testing': ['psycopg2-binary', 'green>=2.12.0', 'coveralls', 'coverage'],
}
}
setup(**config)