| 1 | # Copyright The Plasma Project. |
|---|
| 2 | # See LICENSE for details. |
|---|
| 3 | |
|---|
| 4 | import os.path |
|---|
| 5 | |
|---|
| 6 | from distribute_setup import use_setuptools |
|---|
| 7 | |
|---|
| 8 | use_setuptools() |
|---|
| 9 | from setuptools import setup, find_packages |
|---|
| 10 | |
|---|
| 11 | here = os.path.dirname(__file__) |
|---|
| 12 | version_path = os.path.join(here, 'plasma', 'version.py') |
|---|
| 13 | exec(open(version_path)) |
|---|
| 14 | |
|---|
| 15 | readme = os.path.join(os.path.dirname(__file__), 'README.txt') |
|---|
| 16 | |
|---|
| 17 | setup( |
|---|
| 18 | name='plasma', |
|---|
| 19 | version=version, |
|---|
| 20 | description='Plasma is a Python implementation of Flex Messaging '\ |
|---|
| 21 | 'and Remoting', |
|---|
| 22 | long_description=open(readme, 'rt').read(), |
|---|
| 23 | url='http://plasmads.org', |
|---|
| 24 | author='The Plasma Project', |
|---|
| 25 | install_requires=['PyAMF>=0.5.1'], |
|---|
| 26 | packages=find_packages(exclude=['*.test']), |
|---|
| 27 | license='MIT', |
|---|
| 28 | platforms=['any'], |
|---|
| 29 | classifiers=[ |
|---|
| 30 | 'Development Status :: 2 - Pre-Alpha', |
|---|
| 31 | 'Natural Language :: English', |
|---|
| 32 | 'Intended Audience :: Developers', |
|---|
| 33 | 'Intended Audience :: Information Technology', |
|---|
| 34 | 'License :: OSI Approved :: MIT License', |
|---|
| 35 | 'Operating System :: OS Independent', |
|---|
| 36 | 'Programming Language :: Python', |
|---|
| 37 | 'Programming Language :: Python :: 2.5', |
|---|
| 38 | 'Programming Language :: Python :: 2.6', |
|---|
| 39 | 'Topic :: Software Development :: Libraries :: Python Modules', |
|---|
| 40 | ] |
|---|
| 41 | ) |
|---|