forked from romdr/checksumdir
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 1.11 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
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="checksumdir",
version="1.1.0",
packages=['checksumdir'],
entry_points={
'console_scripts': ['checksumdir=checksumdir.cli:main'],
},
author="Tom McCarthy, M. Niedzielski",
author_email="[email protected], [email protected]",
description="Compute a single hash of the file contents of a directory.",
long_description=read('README.rst'),
license="MIT",
keywords="hash checksum md5 directory",
url="http://github.com/MNiedzielski/checksumdir",
classifiers=[
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
)