-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 999 Bytes
/
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
from setuptools import setup
setup(name='samosa',
version='0.1',
description='Scans media files to find a better version of it self',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Natural Language :: English',
],
keywords='movie search quality download torrent',
url='https://github.com/arkalon76/samosa',
author='Kenth Fagerlund',
author_email='[email protected]',
license='MIT',
packages=['samosa'],
install_requires=[
'mediainfo',
],
test_suite='tests',
tests_require=['pytest',
'pytest',
'pytest-pep8',
'pytest-cov'],
entry_points={'console_scripts': [
'samosa = samosa:main',
],
},
zip_safe=False)