-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·30 lines (27 loc) · 1.08 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
import dirtools
setup(
name='dirtools',
version=dirtools.__version__,
packages=find_packages(),
scripts=['bin/dirt'],
extras_require={
'cli': ['click', 'tabulate'],
'test': ['pytest', 'click', 'tabulate'],
'dev': ['ipython', 'Sphinx', 'pytest', 'click', 'tabulate'],
},
# metadata that uploads to PyPI
author='Roy Enjoy',
author_email='kirpit [at] gmail [dot] com',
description="""dirtools3 is a utility package that helps you to scan file system folders to
collect statistical information about their sub contents (size, file count,
creation time, modification time etc. for each sub folder or file). It also
provides cleanup method to reduce their total size by removing low-redundant
items in given order. It is written in Python and currently supports only
Python version 3.6 or higher.""",
license='GNU General Public License v3',
keywords='dirtools, file system, folder size, trimming',
url='https://github.com/kirpit/dirtools3',
zip_safe=True,
)