forked from Aleksander-Drozd/csvwlib
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (62 loc) · 1.92 KB
/
setup.py
File metadata and controls
70 lines (62 loc) · 1.92 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import pathlib
import setuptools
KEYWORDS = [
"knowledge graph",
"rdf",
"controlled vocabulary",
"csv",
"tabular data",
]
setuptools.setup(
name="csvwlib",
version="0.3.2",
description="Python implementation of CSV on the Web",
long_description = pathlib.Path("README.md").read_text(),
long_description_content_type = "text/markdown",
url = "https://github.com/DerwenAI/csvwlib",
project_urls = {
"Bug Tracker": "https://github.com/DerwenAI/csvwlib/issues",
"Source Code": "https://github.com/DerwenAI/csvwlib",
},
license="MIT",
author="Aleksander Drozd",
author_email="aleksander.drozd@outlook.com",
python_requires=">=3.6",
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,
entry_points={
"console_scripts": [
"csvwlib=csvwlib.csvwcli:main"
],
},
keywords = ", ".join(KEYWORDS),
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Text Processing :: Indexing",
],
)