Permalink
Fetching contributors…
Cannot retrieve contributors at this time
62 lines (54 sloc) 2.25 KB
from __future__ import unicode_literals, division, absolute_import
import io
import sys
from setuptools import setup, find_packages
with io.open('README.rst', encoding='utf-8') as readme:
long_description = readme.read()
# Populates __version__ without importing the package
__version__ = None
with io.open('flexget/_version.py', encoding='utf-8')as ver_file:
exec (ver_file.read()) # pylint: disable=W0122
if not __version__:
print('Could not find __version__ from flexget/_version.py')
sys.exit(1)
def load_requirements(filename):
with io.open(filename, encoding='utf-8') as reqfile:
return [line.strip() for line in reqfile if not line.startswith('#')]
setup(
name='FlexGet',
version=__version__,
description='FlexGet is a program aimed to automate downloading or processing content (torrents, podcasts, etc.) '
'from different sources like RSS-feeds, html-pages, various sites and more.',
long_description=long_description,
author='Marko Koivusalo',
author_email='marko.koivusalo@gmail.com',
license='MIT',
url='http://flexget.com',
packages=find_packages(exclude=['flexget.tests']),
include_package_data=True,
zip_safe=False,
install_requires=load_requirements('requirements.txt'),
tests_require=['pytest'],
extras_require={
'dev': load_requirements('dev-requirements.txt')
},
entry_points={
'console_scripts': ['flexget = flexget:main'],
'gui_scripts': ['flexget-headless = flexget:main'] # This is useful on Windows to avoid a cmd popup
},
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
)