-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 951 Bytes
/
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
from setuptools import find_namespace_packages, setup
setup(
name='perdir',
version='1',
url='https://github.com/twiebe/perdir',
license='BSD',
author='Thomas Wiebe',
author_email='[email protected]',
description='Execute commands per directory easily and concurrently',
long_description='Execute commands per directory easily and concurrently',
package_dir={'': 'src'},
packages=find_namespace_packages(where='src'),
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=['progressbar2', 'termcolor'],
entry_points={
'console_scripts': ['perdir=perdir.main:entrypoint']
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)