-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 1.02 KB
/
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
import sys
from setuptools import setup, find_packages
setup(
name="pywundercam",
version="0.0.1",
description="Python interface to the Wunder 360 S1 panoramic camera.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Athanasios Anastasiou",
author_email="[email protected]",
zip_safe=True,
url="https://github.com/aanastasiou/pywundercam",
license="License :: OSI Approved :: Apache Software License",
packages=find_packages(exclude=("test", "test.*")),
keywords="image camera panoramic 360",
install_requires=['requests', 'pillow'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Capture :: Digital Camera",
])