-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1012 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
30
31
32
33
34
35
#!/usr/bin/env python
from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
with open('VERSION') as f:
version = f.read().lstrip().rstrip()
setup(
name='treecompare',
version=version,
description="simple module and tool to compare two directories",
url='https://github.com/mx-pycoder/treecompare',
long_description=readme+"\n\n",
author="Marnix Kaart",
author_email='mx@pycoder.nl',
packages=['treecompare'],
license="MIT license",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
],
keywords='diff tree compare duplicate',
entry_points={
'console_scripts': ['treecompare=treecompare.cmdline:main'],
},
install_requires=[],
zip_safe=False,
)