-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
44 lines (41 loc) · 1.3 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
35
36
37
38
39
40
41
42
43
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
from setuptools import setup, find_packages
setup(
name = "smpp.twisted",
version = "0.4",
author = "Roger Hoover",
author_email = "[email protected]",
description = "SMPP 3.4 client built on Twisted",
license = 'Apache License 2.0',
packages = find_packages(),
long_description=read('README.markdown'),
keywords = "smpp twisted",
url = "https://github.com/mozes/smpp.twisted",
py_modules=["smpp.twisted"],
include_package_data = True,
package_data={'smpp.twisted': ['README.markdown']},
zip_safe = False,
install_requires = [
'twisted',
'enum',
'pyOpenSSL',
'smpp.pdu',
],
tests_require = [
'mock',
],
test_suite = 'smpp.twisted.tests',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Twisted",
"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",
],
)