forked from nathanbullock/pymtp-nkb
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·30 lines (27 loc) · 935 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
29
30
#!/usr/bin/env python
#
# setup.py for pymtp
#
from distutils.core import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name = "PyMTP",
version = "0.1.0",
description = "LibMTP bindings in Python",
long_description=read('README'),
author = "Nick Devito",
author_email = "[email protected]",
maintainer = "Hans-Christoph Steiner",
maintainer_email = "[email protected]",
url = "https://pypi.python.org/pypi/pymtp",
py_modules = ["pymtp"],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)