Ran update-copyright.py.
[pypid.git] / setup.py
1 """A modular PID control library.
2 """
3
4 from distutils.core import setup
5 import os.path
6
7 from pypid import __version__
8
9
10 _this_dir = os.path.dirname(__file__)
11
12 setup(name='pypid',
13       version=__version__,
14       maintainer='W. Trevor King',
15       maintainer_email='wking@tremily.us',
16       url='http://blog.tremily.us/posts/pypid/',
17       download_url='http://git.tremily.us/?p=pypid.git;a=snapshot;h=v{};sf=tgz'.format(
18         __version__),
19       license = 'GNU General Public License (GPL)',
20       platforms = ['all'],
21       description = __doc__,
22       long_description = open(os.path.join(_this_dir, 'README'), 'r').read(),
23       packages=['pypid', 'pypid.backend'],
24       classifiers = [
25         'Development Status :: 2 - Pre-Alpha',
26         'Intended Audience :: Developers',
27         'Intended Audience :: Science/Research',
28         'Operating System :: OS Independent',
29         'License :: OSI Approved :: GNU General Public License (GPL)',
30         'Programming Language :: Python',
31         'Topic :: Scientific/Engineering',
32         'Topic :: Software Development :: Libraries :: Python Modules',
33         ],
34       )