forked from pmarti/python-messaging
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
28 lines (27 loc) · 981 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
from setuptools import setup, find_packages
import sys
from messaging import VERSION
setup(
name="python-messaging",
version='%s.%s.%s' % VERSION,
description='SMS/MMS encoder/decoder',
license=open('COPYING').read(),
packages=find_packages(exclude=["tests"]),
py_modules=["messaging"],
include_package_data=True,
package_data={'messaging': ['README.md']},
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',
],
)