forked from openprocurement/reports
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (45 loc) · 1.13 KB
/
setup.py
File metadata and controls
48 lines (45 loc) · 1.13 KB
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
40
41
42
43
44
45
46
47
48
from setuptools import setup
install_requires = [
'couchdb',
'dateparser',
'pbkdf2',
'requests',
'requests_cache',
'pytz',
'iso8601',
'pyminizip',
'arrow',
'boto3',
'Jinja2'
]
test_requires = install_requires + [
'mock',
]
setup(
name='reports',
version='0.0.1',
packages=[
'reports',
],
author='Quintagroup, Ltd.',
author_email='info@quintagroup.com',
license='Apache License 2.0',
url='https://github.com/openprocurement/reports',
entry_points={
'console_scripts': [
'bids = reports.utilities.bids:run',
'tenders = reports.utilities.tenders:run',
'refunds = reports.utilities.refunds:run',
'invoices = reports.utilities.invoices:run',
'init = reports.db_init:run',
'zip = reports.utilities.zip:run',
'send = reports.utilities.send:run',
]
},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=test_requires,
test_suite='reports.tests.main.suite',
extras_require={'test': test_requires},
)