sweeper/setup.py

29 lines
904 B
Python
Raw Normal View History

2014-01-27 06:31:40 +00:00
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.1.0',
author='Darko Poljak',
author_email='darko.poljak@gmail.com',
2014-01-27 06:39:40 +00:00
description='Find duplicate files and perform action.',
2014-01-27 06:31:40 +00:00
license="GPLv3",
keywords=['find duplicate files', ],
url='https://github.com/darko-poljak/sweeper',
download_url='https://github.com/darko-poljak/sweeper',
packages=['sweeper'],
2014-01-27 06:50:38 +00:00
long_description=read('README.rst'),
2014-01-27 06:31:40 +00:00
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",
],
)