-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 765 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 765 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
from setuptools import setup, find_packages
setup(
name='rison',
version='0.0.1',
description='A Python rison encoder/decoder',
long_description='A Python rison encoder/decoder',
url='https://github.com/pifantastic/python-rison',
author='Aaron Forsander',
author_email='aaron.forsander@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Encoding',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
],
keywords='rison',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
extras_require={
'test': ['nose'],
}
)