-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·25 lines (23 loc) · 1.02 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name = "dynaptico-pamfax",
version = "1.0.5",
url = "http://github.com/dynaptico/pamfaxp",
author = "Jonathan Sweemer",
author_email = "[email protected]",
maintainer = "Dynaptico LLC (http://www.dynaptico.com)",
maintainer_email = "[email protected]",
description = "Python implementation of the PamFax API",
long_description = "This module implements a set of classes and methods for sending and receiving faxes via the PamFax API using the Python programming language",
platforms = ["Platform Independent"],
license = "MIT",
packages = ['pamfax', 'pamfax.processors'],
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python"
],
)