forked from Logitech/logiPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 696 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import os
from setuptools import setup
setup(
name = "logipy",
version = "1.0.1",
author = "Tom Lambert",
author_email = "devtechsupport@logitech.com",
description = ("A simple python wrapper for Logitech G's LED and Arx SDKs."),
long_description = open('README.rst').read(),
keywords = ["logi", "logipy", "Logitech", "LogitechG", "LED", "Arx", "LGS", "Logitech Gaming Software"],
url = "http://gaming.logitech.com/en-us/developers",
download_url = "https://github.com/Logitech/logiPy/tarball/master",
packages=['logipy'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries",
],
)