Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions bin/push_pypi.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash -e

rm -rf dist
python setup.py sdist bdist_wheel
twine upload dist/*
30 changes: 27 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
import setuptools


KEYWORDS = [
"knowledge graph",
"rdf",
"controlled vocabulary",
"csv",
"tabular data",
]


setuptools.setup(
name="csvwlib",
version="0.3.2",
Expand All @@ -16,9 +25,9 @@
"Source Code": "https://github.com/DerwenAI/csvwlib",
},

author="Derwen, Inc.",
author_email="info@derwen.ai",
license="MIT",
author="Aleksander Drozd",
author_email="aleksander.drozd@outlook.com",

python_requires=">=3.6",
packages=[
Expand All @@ -38,5 +47,20 @@
"language-tags >= 0.4.3"
],
zip_safe=False,
)

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",
],
)