33 lines
1,019 B
Python
33 lines
1,019 B
Python
import os
|
|
from setuptools import setup
|
|
|
|
def read(fname):
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
setup(
|
|
name='sweeper',
|
|
version='0.4.0',
|
|
author='Darko Poljak',
|
|
author_email='darko.poljak@gmail.com',
|
|
description='Find duplicate files and perform action.',
|
|
license="GPLv3",
|
|
keywords=['find duplicate files', ],
|
|
url='https://github.com/darko-poljak/sweeper',
|
|
download_url='https://github.com/darko-poljak/sweeper',
|
|
packages=['sweeper'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'sweeper=sweeper.sweeper:main',
|
|
],
|
|
},
|
|
long_description=read('README.rst'),
|
|
platforms="OS Independent",
|
|
install_requires=["docopt"],
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
],
|
|
)
|
|
|