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