|
2 | 2 | import setuptools
|
3 | 3 |
|
4 | 4 |
|
| 5 | +KEYWORDS = [ |
| 6 | + "knowledge graph", |
| 7 | + "rdf", |
| 8 | + "controlled vocabulary", |
| 9 | + "csv", |
| 10 | + "tabular data", |
| 11 | + ] |
| 12 | + |
| 13 | + |
5 | 14 | setuptools.setup(
|
6 | 15 | name="csvwlib",
|
7 | 16 | version="0.3.2",
|
|
16 | 25 | "Source Code": "https://github.com/DerwenAI/csvwlib",
|
17 | 26 | },
|
18 | 27 |
|
19 |
| - author="Derwen, Inc.", |
20 |
| - |
21 | 28 | license="MIT",
|
| 29 | + author="Aleksander Drozd", |
| 30 | + |
22 | 31 |
|
23 | 32 | python_requires=">=3.6",
|
24 | 33 | packages=[
|
|
38 | 47 | "language-tags >= 0.4.3"
|
39 | 48 | ],
|
40 | 49 | zip_safe=False,
|
41 |
| -) |
42 | 50 |
|
| 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