forked from wontfix-org/tues
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1018 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (28 loc) · 1018 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
#!/usr/bin/env python
# coding: utf-8
import glob as _glob
import setuptools as _st
import tues as _tues
if __name__ == '__main__':
_st.setup(
name='tues',
version=_tues.__version__,
url='https://github.com/wontfix-org/tues/',
license='Apache Software License',
author='Michael van Bracht',
author_email='michael@wontfix.org',
description='Easy remote command execution',
packages=_st.find_packages(),
scripts=_glob.glob('scripts/tues*'),
include_package_data=True,
platforms='any',
setup_requires=['setuptools-markdown'],
long_description_markdown_filename='README.md',
install_requires=['docopt', 'fabric', 'requests>=2.4'],
download_url='https://github.com/wontfix-org/tues/tarball/{0}'.format(_tues.__version__),
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Natural Language :: English',
],
)