-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (23 loc) · 884 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
# Majority of this scripte was copied from
# https://github.com/abhishekkrthakur/wtfml/blob/master/setup.py
from setuptools import setup, Extension
from setuptools import find_packages
import image_inspector
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
if __name__ == "__main__":
setup(
name="image_inspector",
version=image_inspector.__version__,
description="App for inspecting images",
long_description=long_description,
long_description_content_type="text/markdown",
author="Jan Malinowski",
author_email="malinowwskijasiek1999@gmail.com",
url="https://github.com/JanMalinowski/image_inspector",
license="MIT License",
packages=find_packages(),
include_package_data=True,
platforms=["linux", "unix"],
python_requires=">3.5.2",
)