-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 928 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 928 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
31
32
33
34
from setuptools import setup
with open('README.md', 'r') as fh:
long_description = fh.read()
# Thanks to @joelbarmettlerUZH on Medium
setup(
name='pyion2json',
packages=['pyion2json'],
description='Convert an Amazon Ion document(s) to JSON',
long_description=long_description,
long_description_content_type='text/markdown',
version='0.0.2',
license='MIT',
author='crouchcd',
author_email='cdcsoftdev@gmail.com',
url='https://github.com/crouchcd/pyion2json',
download_url='https://github.com/crouchcd/pyion2json/archive/0.0.2.tar.gz',
keywords=[
'Amazon',
'Ion',
'JSON'
],
install_requires=[
'amazon.ion'
],
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
)