-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.03 KB
/
setup.py
File metadata and controls
31 lines (29 loc) · 1.03 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
from setuptools import find_packages, setup
from codecs import open
from os import path
# Get the long description from the README file
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, "README.md"), encoding="utf-8") as f:
long_description = f.read().replace("\r", "")
setup(
name="tabularjson",
version="2.0.0",
packages=find_packages(include=["tabularjson"]),
description="Tabular-JSON: A superset of JSON adding CSV-like tables",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://tabular-json.org/",
author="Jos de Jong",
author_email="email@josdejong.com",
license="ISC",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
],
include_package_data=True,
install_requires=[],
)