-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (28 loc) · 1.05 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 setup, find_packages
from messaging import VERSION
README = open('README.rst').read()
setup(
name="python-messaging",
version='%s.%s.%s' % VERSION,
description='SMS and MMS message encoder/decoder.',
long_description=README,
license="GNU GENERAL PUBLIC LICENSE Version 2, June 1991",
packages=find_packages(exclude=["tests"]),
py_modules=["messaging"],
include_package_data=True,
package_data={'messaging': ['README.rst']},
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Communications :: Telephony',
],
)