-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
44 lines (41 loc) · 1.23 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
# shelljob setup.py
import os,sys
from setuptools import setup
base_dir = 'src'
def list_files(path):
m = []
for root, dirnames, filenames in os.walk(path):
for filename in filenames:
m.append(os.path.join(root, filename))
return m
setup(
name = 'shelljob',
packages = [ 'shelljob' ],
package_dir = {
'': base_dir,
},
version = '0.6.3',
description = 'Run multiple subprocesses asynchronous/in parallel with streamed output/non-blocking reading. Also various tools to replace shell scripts.',
author = 'edA-qa mort-ora-y',
author_email = '[email protected]',
url = 'https://github.com/mortoray/shelljob/',
classifiers = [
'Development Status :: 6 - Mature',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Topic :: Terminals',
'Topic :: System',
'Topic :: Software Development :: Build Tools',
],
long_description = open('README.md','r',encoding="utf-8").read(),
long_description_content_type="text/markdown",
package_data = {
'shelljob': [ base_dir + '/doc/*' ]
},
license = 'GPLv3',
python_requires=">=3.6",
)