forked from seveibar/jac-format
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 852 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 852 Bytes
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
from os.path import join, abspath, dirname
from setuptools import setup, find_packages
_here = abspath(dirname(__file__))
with open(join(_here, "README.md")) as f:
readme = f.read()
with open(join(_here, "LICENSE")) as f:
license = f.read().replace("\n", "")
setup(
name="jac_format",
version="0.1.1",
description="JAC (JSON as CSV) Format Conversion",
long_description=readme,
long_description_content_type="text/markdown",
author="UniversalDataTool",
author_email="seve@wao.ai",
url="https://github.com/UniversalDataTool/jac-format",
license=license,
packages=["jac_format"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
],
)