-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 1.12 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
from setuptools import find_packages, setup
version = '0.2.1'
setup(
name='streamcat',
packages=find_packages(exclude=('tests', 'docs')),
version=version,
description='Encode and decode concatenated objects as streams',
long_description=open('README.rst', 'r').read(),
author='Bertrand Bonnefoy-Claudet',
author_email='[email protected]',
url='https://github.com/cryptosense/streamcat',
download_url='https://github.com/cryptosense/streamcat/tarball/v{}'.format(version),
keywords=['stream', 'file', 'json'],
license='BSD',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
install_requires=[],
)