mirror of
https://github.com/hrfee/jellyfin-accounts.git
synced 2024-11-04 21:40:11 +00:00
63 lines
2.3 KiB
Python
63 lines
2.3 KiB
Python
from setuptools import find_packages, setup
|
|
|
|
with open('README.md', 'r') as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name='jellyfin-accounts',
|
|
version='0.1',
|
|
scripts=['jf-accounts'],
|
|
author="Harvey Tindall",
|
|
author_email="hrfee@protonmail.ch",
|
|
description="A simple invite system for Jellyfin",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/hrfee/jellyfin-accounts",
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
packages=find_packages(),
|
|
# include_package_data=True,
|
|
data_files=[('data', ['data/config-default.ini',
|
|
'data/email.html',
|
|
'data/email.txt',
|
|
'data/invite-email.html',
|
|
'data/invite-email.txt']),
|
|
('data/static', ['data/static/admin.js',
|
|
'data/static/setup.js',
|
|
'data/static/apple-touch-icon.png',
|
|
'data/static/android-chrome-192x192.png',
|
|
'data/static/android-chrome-512x512.png',
|
|
'data/static/favicon-16x16.png',
|
|
'data/static/favicon-32x32.png',
|
|
'data/static/mstile-150x150.png',
|
|
'data/static/safari-pinned-tab.svg',
|
|
'data/static/site.webmanifest',
|
|
'data/static/browserconfig.xml',
|
|
'data/static/favicon.ico']),
|
|
('data/templates', [
|
|
'data/templates/404.html',
|
|
'data/templates/invalidCode.html',
|
|
'data/templates/admin.html',
|
|
'data/templates/form.html',
|
|
'data/templates/setup.html'])],
|
|
zip_safe=False,
|
|
install_requires=[
|
|
'pyOpenSSL',
|
|
'Flask',
|
|
'flask_httpauth',
|
|
'requests',
|
|
'itsdangerous',
|
|
'passlib',
|
|
'secrets',
|
|
'pytz',
|
|
'python-dateutil',
|
|
'watchdog',
|
|
'configparser',
|
|
'waitress',
|
|
],
|
|
)
|
|
|