-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (45 loc) · 1.54 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#! /usr/bin/env python3
#sudo python setup.py bdist_wheel
#twine upload ./dist/remdups*.whl
from setuptools import setup
import platform
import os, os.path
__version__ = '1.3.1'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name = 'remdups',
version = __version__,
description = 'remdups - remove duplicate files',
license = 'MIT',
author = 'Roland Puntaier',
keywords=['Duplicate, File'],
author_email = '[email protected]',
url = 'https://github.com/rpuntaie/remdups',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Topic :: Utilities',
'Topic :: System :: Archiving',
'Topic :: System :: Systems Administration'
],
install_requires = ['pillow'],
extras_require = {'develop': ['pillow', 'piexif', 'pytest-toolbox', 'pytest-coverage']},
long_description = read('README.rst'),
packages=['remdups'],
include_package_data=False,
zip_safe=False,
tests_require=[],
entry_points={
'console_scripts': [
'remdups = remdups.remdups:run',
]
},
)