-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (24 loc) · 830 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
r"""A MSAA client library.
"""
import sys, os
from distutils.core import setup, Command, DistutilsOptionError
import pyia
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: LGPLv2.2',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
setup(name="pyia",
description="Python MSAA client library",
long_description = __doc__,
author="Eitan Isaacson",
author_email="[email protected]",
url="http://github.com/eeejay/pyia/tree/master",
download_url = "http://github.com/eeejay/pyia/tree/master",
license="LGPLv2.2",
classifiers=classifiers,
version=pyia.__version__,
packages=["pyia"])