-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (35 loc) · 1.24 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
# Copyright The Plasma Project.
# See LICENSE for details.
import os.path
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
here = os.path.dirname(__file__)
version_path = os.path.join(here, 'plasma', 'version.py')
exec(open(version_path))
readme = os.path.join(os.path.dirname(__file__), 'README.txt')
setup(
name='plasma',
version=version,
description='Plasma is a Python implementation of Flex Messaging '\
'and Remoting',
long_description=open(readme, 'rt').read(),
url='http://plasmads.org',
author='The Plasma Project',
install_requires=['PyAMF>=0.5.1'],
packages=find_packages(exclude=['*.test']),
license='MIT',
platforms=['any'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Natural Language :: English',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)