forked from sorend/sshconf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (28 loc) · 977 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·31 lines (28 loc) · 977 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, Distribution
Distribution().fetch_build_eggs('versiontag')
from versiontag import get_version, cache_git_tag
cache_git_tag()
MY_VERSION = get_version(pypi=True)
setup(
name='sshconf',
version=MY_VERSION,
description='Lightweight SSH config library',
author='Søren A D',
author_email='sorend@acm.org',
url='https://github.com/sorend/sshconf',
download_url='https://github.com/sorend/sshconf/tarball/%s' % MY_VERSION,
license='MIT',
keywords=['ssh', 'config'],
py_modules=['sshconf'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
data_files=['version.txt'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
]
)