-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
15 lines (14 loc) · 693 Bytes
/
Copy pathsetup.py
File metadata and controls
15 lines (14 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup, find_packages
setup(
name='DIP_solver', # Name of the package
version='2.1.0', # Version
author='Abdelhamed Eid', # Author name
description='A library to solve DIP and some CV problems, implemented from scratch in pure python for easy use, made originally to learn the implementation of the algorithms',
long_description=open('README.md').read(),
url='https://abdo-eid.github.io/DIP_solver/',
packages=find_packages(), # Automatically finds packages with __init__.py
# install_requires=[ # Dependencies
# 'matplotlib'
# ],
python_requires='>=3.10'
)