-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
32 lines (29 loc) · 1.03 KB
/
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
32
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as file_readme:
readme = file_readme.read()
setup(name='json-sempai',
version='0.4.0',
description='Use JSON files as if they\'re python modules',
long_description=readme,
author='Louis Taylor',
author_email='[email protected]',
license='MIT',
url='https://github.com/kragniz/json-sempai',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='please don\'t use this library for anything',
packages=['jsonsempai', 'jsonsempai.tests'],
test_suite='jsonsempai.tests'
)