sweeper/setup.py

38 lines
1.0 KiB
Python
Raw Permalink Normal View History

2014-01-27 06:31:40 +00:00
import os
from setuptools import setup
2014-01-29 20:10:30 +00:00
2014-01-27 06:31:40 +00:00
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
2014-01-29 20:10:30 +00:00
2014-02-06 13:05:24 +00:00
import sweeper.sweeper as sw
2014-01-27 06:31:40 +00:00
setup(
name='sweeper',
2014-02-06 13:05:24 +00:00
version=sw.__version__,
2014-01-27 06:31:40 +00:00
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 08:23:37 +00:00
entry_points={
'console_scripts': [
'sweeper=sweeper.sweeper:main',
],
},
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",
],
)