Skip to content

Commit 3eb3d6d

Browse files
authored
Merge pull request #2 from DerwenAI/update
prep release 0.3.2
2 parents 5db8ccb + be3e838 commit 3eb3d6d

File tree

2 files changed

+32
-3
lines changed

2 files changed

+32
-3
lines changed

bin/push_pypi.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash -e
2+
3+
rm -rf dist
4+
python setup.py sdist bdist_wheel
5+
twine upload dist/*

setup.py

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
import setuptools
33

44

5+
KEYWORDS = [
6+
"knowledge graph",
7+
"rdf",
8+
"controlled vocabulary",
9+
"csv",
10+
"tabular data",
11+
]
12+
13+
514
setuptools.setup(
615
name="csvwlib",
716
version="0.3.2",
@@ -16,9 +25,9 @@
1625
"Source Code": "https://github.com/DerwenAI/csvwlib",
1726
},
1827

19-
author="Derwen, Inc.",
20-
author_email="[email protected]",
2128
license="MIT",
29+
author="Aleksander Drozd",
30+
author_email="[email protected]",
2231

2332
python_requires=">=3.6",
2433
packages=[
@@ -38,5 +47,20 @@
3847
"language-tags >= 0.4.3"
3948
],
4049
zip_safe=False,
41-
)
4250

51+
keywords = ", ".join(KEYWORDS),
52+
classifiers = [
53+
"Programming Language :: Python :: 3",
54+
"License :: OSI Approved :: MIT License",
55+
"Operating System :: OS Independent",
56+
"Development Status :: 4 - Beta",
57+
"Intended Audience :: Developers",
58+
"Intended Audience :: Education",
59+
"Intended Audience :: Information Technology",
60+
"Intended Audience :: Science/Research",
61+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
62+
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
63+
"Topic :: Scientific/Engineering :: Information Analysis",
64+
"Topic :: Text Processing :: Indexing",
65+
],
66+
)

0 commit comments

Comments
 (0)