forked from hologram-io/smpp.twisted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 1.66 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
44
45
46
import os
from setuptools import setup, find_packages
def parse_requirements(filename):
"""load requirements from a pip requirements file"""
lineiter = (line.strip() for line in open(filename))
return [line for line in lineiter if line and (not line.startswith("#") and not line.startswith('-'))]
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "smpp.twisted",
version = "0.4",
author = "Roger Hoover",
author_email = "roger.hoover@gmail.com",
description = "SMPP 3.4 client built on Twisted",
license = 'Apache License 2.0',
packages = find_packages(exclude=["tests"]),
long_description=read('README.md'),
keywords = "smpp twisted",
url = "https://github.com/mozes/smpp.twisted",
py_modules=["smpp.twisted"],
include_package_data = True,
package_data={'smpp.twisted': ['README.md']},
zip_safe = False,
install_requires = parse_requirements('requirements.txt'),
tests_require = [
'mock',
],
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",
'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 :: Software Development :: Libraries :: Python Modules",
],
)