-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 792 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
with open('PYPI_README.md') as file:
long_description = file.read()
setup(
name="python-duplicate",
version="1.0.4",
url="https://github.com/Clement-O/python-duplicate",
license="MIT",
author="Clément Omont--Agnes",
author_email="omont.clement@gmail.com",
description="Handle duplicate in python",
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(exclude=["*.test", "*.test.*", "test.*", "test"]),
zip_safe=False,
install_requires=["psycopg2-binary", "PyMySQL"],
project_urls={
"Documentation": "https://python-duplicate.readthedocs.io/en/latest/",
"Source": "https://github.com/Clement-O/python-duplicate",
},
)