-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 1.03 KB
/
Copy pathsetup.py
File metadata and controls
33 lines (29 loc) · 1.03 KB
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
33
import os
from setuptools import find_packages, setup
import hglock
HERE = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(HERE, 'README')).read()
VERSION = hglock.__version__
setup(name='hglock',
version=VERSION,
description='This extension implements a centralized file-based locking scheme for Mercurial.',
long_description=README,
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Version Control'
],
keywords='mercurial locking',
author='aragost Trifork',
author_email='mg@aragost.com',
maintainer='Lantiq',
maintainer_email='MUC-LQ-ADM-HG-U@lantiq.com',
url='https://bitbucket.org/lantiq/hglock',
license='GNU GPLv2+',
packages=find_packages(),
include_package_data=True,
zip_safe=False
)