-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·30 lines (26 loc) · 919 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
#!/usr/bin/env python
import bluevia
from setuptools import setup, find_packages
setup(
name=bluevia.__title__,
version=bluevia.__version__,
description='A Python wrapper around the BlueVia API.',
long_description=open('README.rst').read(), # + '\n\n' + open('HISTORY.rst').read(),
author=bluevia.__author__,
author_email=bluevia.__email__,
url='https://pybluevia.readthedocs.org/',
keywords='bluevia api sms mms',
packages=find_packages(),
include_package_data=True,
install_requires=['requests>=1.0.0'],
license=open('LICENSE').read(),
zip_safe=False,
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries'
),
)