forked from tsileo/dirtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 950 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="dirtools",
version="0.2.0",
author="Thomas Sileo",
author_email="[email protected]",
description="Exclude/ignore files in a directory (using .gitignore like syntax), compute hash, search projects for an entire directory tree and gzip compression.",
license="MIT",
keywords="exclude exclusion directory hash compression gzip",
url="https://github.com/tsileo/dirtools",
py_modules=["dirtools"],
long_description=read("README.rst"),
install_requires=["globster"],
tests_require=["pyfakefs"],
test_suite="test_dirtools",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
],
scripts=["dirtools.py"],
)