-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1.06 KB
/
setup.py
File metadata and controls
32 lines (31 loc) · 1.06 KB
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
from setuptools import setup
setup(name='salmiak',
version='0.4',
description='The easiest movie file renamer this side of github',
long_description="Look, it's not very powerful, but it's simple. And sometimes that's enough",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Natural Language :: English',
],
keywords='movie rename file scene',
url='https://github.com/arkalon76/salmiak',
author='Kenth Fagerlund',
author_email='salmiak_code@gmail.com',
license='MIT',
packages=['salmiak'],
install_requires=[
'guessit',
],
test_suite='tests',
tests_require=['pytest',
'pytest',
'pytest-pep8',
'pytest-cov'],
entry_points={'console_scripts': [
'salmiak = salmiak:main',
],
},
zip_safe=False)