Browse Source
source: / setup.py
Revision 5e7b8656bf5684067ddf6b2761b5991a7e6630f0, 1.2 KB (checked in by Nick Joyce <nick@…>, 2 years ago)

Merged copyright-year-34: Removed year from copyright headers.

Fixes: #34
Author: nick, thijs
Reviewer: thijs

  • Property mode set to 100644
Line 
1# Copyright The Plasma Project.
2# See LICENSE for details.
3
4import os.path
5
6from distribute_setup import use_setuptools
7
8use_setuptools()
9from setuptools import setup, find_packages
10
11here = os.path.dirname(__file__)
12version_path = os.path.join(here, 'plasma', 'version.py')
13exec(open(version_path))
14
15readme = os.path.join(os.path.dirname(__file__), 'README.txt')
16
17setup(
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)