-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 934 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
from pathlib import Path
from setuptools import find_packages, setup
from website_colors import __title__
setup(
name='website-colors',
version='0.1.1',
description=__title__,
long_description=(Path(__file__).parent / 'README.md').read_text(),
url='https://www.github.com/jakubvalenta/website-colors',
author='Jakub Valenta',
author_email='[email protected]',
license='Apache Software License',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(),
install_requires=['Pillow', 'luigi', 'pandas', 'selenium'],
)