-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1002 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, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
readme = ''
with open('README.md') as f:
readme = f.read()
setup(name='Video Locale',
author='Team 95',
url='https://github.com/Team-95/videolocale',
packages=find_packages(),
license='MIT',
description='A website that generates YouTube playlists based on selected geographical regions.',
long_description=readme,
include_package_data=True,
install_requires=requirements,
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Multimedia :: Video :: Display'
]
)