-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 845 Bytes
/
setup.py
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
# -*- coding: UTF-8 -*-
from setuptools import setup
authors = [
'João André <joao.andre@axado.com.br>',
'Fabio Menegazzo <fabio.menegazzo@axado.com.br>',
]
setup(
name='ojson',
version='0.1.0',
packages=['ojson'],
# metadata for upload to PyPI
author=', '.join(authors),
description='Keep your JSON structure as it is',
long_description=open('README.rst').read(),
license='MIT',
keywords='json ordered dict',
url='https://github.com/joaoandrepsilva/ojson',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy',
],
)