-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 937 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 937 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='csvwlib',
version='0.3.1',
description='Python implementation of CSV on the Web',
long_description=readme(),
url='https://github.com/Aleksander-Drozd/csvwlib',
download_url='https://github.com/Aleksander-Drozd/csvwlib/releases/download/0.3.1/csvwlib-0.3.1.tar.gz',
author='Aleksander Drozd',
author_email='aleksander.drozd@outlook.com',
license='MIT',
packages=['csvwlib', 'csvwlib.converter', 'csvwlib.utils', 'csvwlib.utils.rdf', 'csvwlib.utils.url', 'csvwlib.utils.json'],
install_requires=[
'python-dateutil >= 2.6.1',
'rdflib >= 4.2.2',
'rdflib-jsonld >= 0.4.0',
'requests >= 2.20.0',
'uritemplate >= 3.0.0',
'language-tags >= 0.4.3'
],
zip_safe=False,
python_requires='>=3.6'
)