-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
35 lines (33 loc) · 1.14 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
31
32
33
34
import os
from setuptools import setup, find_packages
from pkg_resources import resource_string
from setuptools import setup, find_packages
setup(
name = "smpp.pdu",
version = "0.3",
author = "Roger Hoover",
author_email = "[email protected]",
description = "Library for parsing Protocol Data Units (PDUs) in SMPP protocol",
license = 'Apache License 2.0',
packages = find_packages(),
long_description=resource_string(__name__, 'README.markdown'),
keywords = "smpp pdu",
url = "https://github.com/mozes/smpp.pdu",
py_modules=["smpp.pdu"],
include_package_data = True,
package_data={'smpp.pdu': ['README.markdown']},
zip_safe = False,
install_requires = [
'enum',
],
test_suite = 'smpp.pdu.tests',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: System :: Networking",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)