-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (47 loc) · 1.45 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
50
51
import os.path
import setuptools
import json
DIR = os.path.dirname(__file__)
print('working from ', DIR)
with open(os.path.join(DIR, "README.md"), "r", encoding="utf-8") as fp:
long_description = fp.read()
try:
with open(os.path.join(DIR, 'versions.json')) as fp:
versions = json.load(fp)
VERSION = versions['current']
except OSError:
VERSION = '0.0.0'
setuptools.setup(
name="cubedtube", # Replace with your own username
version=VERSION,
author="stevarino",
author_email="stevarino@hermit.tube",
description="A video viewing webapp that organizes videos into channels and series",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/stevarino/cubed-tube",
project_urls={
"Bug Tracker": "https://github.com/stevarino/cubed-tube/issues",
},
packages=setuptools.find_packages(),
package_data={'cubed_tube.frontend.templates': ['*', '**/*']},
install_requires=[
'Authlib<=0.15.4', # Authlib 1.0a has signature changes
'awscli>=1.19.97',
'boto3>=1.17.97',
'Flask>=1.1.2',
'gunicorn>=20.0.0',
'Jinja2>=3.0',
'peewee>=3.13.3',
'prometheus-client>=0.11.0',
'pymemcache>=3.5.0',
'PyYAML>=5.3.1',
'requests>=2.0'
],
classifiers=[
],
entry_points = {
'console_scripts': ['cubedtube=cubed_tube.main:main'],
},
python_requires='>=3.6',
)