-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
52 lines (47 loc) · 1.6 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import io
from setuptools import setup, find_packages
description = (
'(DEPRECATED) A Python library to validate Data Package datapackage.json'
' files.'
)
with io.open('README.md') as readme:
long_description = ''.join(
filter(lambda x: 'https://travis-ci.org/' not in x,
readme.readlines()))
dependencies = [
'requests>=2.8.0',
'jsonschema>=2.5.1',
'datapackage-registry>=0.3.0'
]
setup(
name='datapackage-validate',
version='0.4.0',
url='https://github.com/okfn/datapackage-validate-py',
license='MIT',
description=description,
long_description=long_description,
author='Open Knowledge Foundation',
author_email='[email protected]',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
package_dir={'datapackage_validate': 'datapackage_validate'},
install_requires=dependencies,
classifiers=[
'Development Status :: 7 - Inactive',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
)