-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
52 lines (34 loc) · 1.24 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python3
import os
import setuptools
def find_files(path):
return [os.path.join(path, f) for f in os.listdir(path)]
setuptools.setup(
name='workspace-tools',
version='3.4.3',
author='Max Zheng',
author_email='[email protected]',
description='Convenience wrapper for git/tox to simplify local development',
long_description=open('README.rst').read(),
changelog_url='https://raw.githubusercontent.com/maxzheng/workspace-tools/master/docs/CHANGELOG.rst',
url='https://github.com/maxzheng/workspace-tools',
entry_points={
'console_scripts': [
'wst = workspace.controller:Commander.main',
],
},
install_requires=open('requirements.txt').read(),
license='MIT',
packages=setuptools.find_packages(),
include_package_data=True,
python_requires='>=3.6',
setup_requires=['setuptools-git', 'wheel'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
keywords='workspace multiple repositories git tox wrapper development tools',
)