This repository has been archived by the owner on Feb 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
68 lines (62 loc) · 1.8 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import os
import io
from setuptools import setup, find_packages
# Helpers
def read(*paths):
"""Read a text file."""
basedir = os.path.dirname(__file__)
fullpath = os.path.join(basedir, *paths)
contents = io.open(fullpath, encoding='utf-8').read().strip()
return contents
# Prepare
PACKAGE = 'goodtablesio'
NAME = PACKAGE.replace('_', '-')
DESCRIPTION = '''
An online continuous data validation service
'''
INSTALL_REQUIRES = [
]
TESTS_REQUIRE = [
'pylama',
'tox',
]
README = read('README.md')
VERSION = '1.0.3'
PACKAGES = find_packages(exclude=['examples', 'tests'])
# Run
setup(
name=NAME,
version=VERSION,
packages=PACKAGES,
include_package_data=True,
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
extras_require={'develop': TESTS_REQUIRE},
zip_safe=False,
long_description=README,
description=DESCRIPTION,
entry_points={
'console_scripts': [
'goodtablesio = goodtablesio.commands:main',
]
},
author='Open Knowledge Foundation',
author_email='info@okfn.org',
url='https://github.com/frictionlessdata/goodtables.io',
license='GNU Affero General Public License (AGPL) v3.0',
keywords=[
'data', 'validation', 'csv', 'excel'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)