forked from smontanaro/pylockfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.2 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
V = "0.9.1"
from distutils.core import setup
setup(name='lockfile',
author='Skip Montanaro',
author_email='skip@pobox.com',
url='http://code.google.com/p/pylockfile/',
download_url=('http://code.google.com/p/pylockfile/downloads/'
'detail?name=lockfile-%s.tar.gz' % V),
version=V,
description="Platform-independent file locking module",
long_description=open("README").read(),
packages=['lockfile'],
license='MIT License',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows :: Windows NT/2000',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)