forked from bgilmore/mustaine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (32 loc) · 1.01 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
import os, sys
from setuptools import find_packages, setup
from mustaine import __version__
if sys.version_info < (2,6):
raise NotImplementedError("mustaine requires Python 2.6 or later")
setup(
name = "mustaine",
version = __version__,
description = "Hessian RPC Library",
long_description = file(
os.path.join(
os.path.dirname(__file__),
'README.rst'
)
).read(),
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Object Brokering',
'Topic :: Software Development :: Libraries',
],
url = "http://github.com/bgilmore/mustaine",
author = "Brandon Gilmore",
author_email = "brandon@mg2.org",
license = "BSD",
platforms = "any",
packages = find_packages(exclude=["test"]),
zip_safe = True,
)