-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
49 lines (41 loc) · 1.32 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
import os
import sys
from setuptools import setup, find_packages, Command
from commands import *
tests_require=['pytest-cov', 'pytest', 'testfixtures']
setup(
name=name,
version=read_version(),
description='A regex based file organizer',
long_description=open(os.path.join(base_dir, 'description.txt')).read().strip(),
license='MPL',
url='https://github.com/chriscz/pySorter',
author='Chris Coetzee',
author_email='[email protected]',
packages=find_packages(),
setup_requires=['pytest-runner'],
tests_require=tests_require,
include_package_data=True,
zip_safe=False,
cmdclass={
'test': PyTestCommand,
'coverage': CoverageCommand,
'bump': BumpVersionCommand,
},
entry_points={
"console_scripts": ['pysorter=pysorter.commandline:main']
},
extras_require=dict(
build=['twine', 'wheel', 'setuptools-git', 'sphinx'],
test=['pytest', 'testfixtures', 'pytest-cov'],
),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Topic :: Utilities",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
]
)