forked from open-contracting/ocdskit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 1005 Bytes
/
setup.py
File metadata and controls
40 lines (38 loc) · 1005 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
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='ocdskit',
version='0.0.3',
author='James McKinney',
author_email='james@slashpoundbang.com',
url='https://github.com/open-contracting/ocdskit',
description='A suite of command-line tools for working with OCDS data',
license='BSD',
packages=find_packages(),
long_description=long_description,
install_requires=[
'jsonref',
'jsonschema',
'ocdsmerge',
'python-dateutil',
'pytz',
'requests',
'rfc3987',
'sqlalchemy',
'strict-rfc3339',
],
extras_require={
'test': [
'coveralls',
'pytest',
'pytest-cov',
],
},
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
],
entry_points='''[console_scripts]
ocdskit = ocdskit.cli.__main__:main''',
)