-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (43 loc) · 1.69 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='deplicate-cli',
version=open('VERSION').read().strip(),
description='Command Line Interface for deplicate.',
long_description=open('README.rst').read(),
keywords='duplicates dups',
url='https://github.com/deplicate/cli',
download_url='https://github.com/deplicate/cli/releases',
author='Walter Purcaro',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
# 'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: System',
'Topic :: System :: Filesystems',
'Topic :: Utilities'],
platforms=['any'],
py_modules=['deplicate_cli'],
include_package_data=True,
install_requires=['click>=4.0', 'deplicate>=0.9.0'],
extras_require={'colorama': ['colorama;os_name=="nt"']},
python_requires='>=2.6,!=3.0,!=3.1,!=3.2',
zip_safe=True,
entry_points={
'console_scripts': ['deplicate=deplicate_cli:cli']})