-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 939 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='linkedin-queens-solver',
version='0.0.1',
author="utkarsh-deshmukh",
author_email="[email protected]",
description="lib to solve the linkedin daily challenge `Queens`",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Utkarsh-Deshmukh/Linkedin_Queens_challenge",
download_url="https://github.com/Utkarsh-Deshmukh/Linkedin_Queens_challenge/archive/refs/heads/main.zip",
install_requires=['numpy', 'opencv-python'],
license='MIT License',
keywords='Linkedin Daily challenge Queens',
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)