-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
25 lines (22 loc) · 801 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
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
with open("requirements.txt", encoding="utf-8") as f:
install_requires=f.readlines()
setup(
name="exif-frame",
version="1.0.5",
author="Cyan@https://github.com/cyan-io",
author_email="[email protected]",
url="https://github.com/cyan-io/exif-frame",
download_url="https://github.com/cyan-io/exif-frame/releases",
license="MPL 2.0",
include_package_data=True,
packages=find_packages(),
entry_points={"console_scripts": ["frame = frame.frame:main"]},
install_requires=install_requires,
platforms="any",
long_description=long_description,
long_description_content_type='text/markdown',
python_requires=">=3.6",
)