~ntt-pf-lab/nova/monkey_patch_notification

« back to all changes in this revision

Viewing changes to vendor/lockfile/setup.py

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
V = "0.9"
 
4
 
 
5
from distutils.core import setup
 
6
setup(name='lockfile',
 
7
      author='Skip Montanaro',
 
8
      author_email='skip@pobox.com',
 
9
      url='http://smontanaro.dyndns.org/python/',
 
10
      download_url=('http://smontanaro.dyndns.org/python/lockfile-%s.tar.gz' %
 
11
                    V),
 
12
      version=V,
 
13
      description="Platform-independent file locking module",
 
14
      long_description=open("README").read(),
 
15
      packages=['lockfile'],
 
16
      license='MIT License',
 
17
      classifiers=[
 
18
          'Development Status :: 4 - Beta',
 
19
          'Intended Audience :: Developers',
 
20
          'License :: OSI Approved :: MIT License',
 
21
          'Operating System :: MacOS',
 
22
          'Operating System :: Microsoft :: Windows :: Windows NT/2000',
 
23
          'Operating System :: POSIX',
 
24
          'Programming Language :: Python',
 
25
          'Programming Language :: Python :: 2.4',
 
26
          'Programming Language :: Python :: 2.5',
 
27
          'Programming Language :: Python :: 2.6',
 
28
          'Programming Language :: Python :: 2.7',
 
29
          'Programming Language :: Python :: 3.0',
 
30
          'Topic :: Software Development :: Libraries :: Python Modules',
 
31
          ]
 
32
      )