We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e80f064 commit 4b65e13Copy full SHA for 4b65e13
2 files changed
setup.cfg
@@ -0,0 +1,2 @@
1
+[metadata]
2
+description-file = README.md
setup.py
@@ -0,0 +1,16 @@
+#!/usr/bin/env python
+
3
+from distutils.core import setup
4
5
+setup(
6
+ name = 'apds9960',
7
+ packages = ['apds9960'],
8
+ version = '0.1',
9
+ description = 'Python APDS-9960 Library',
10
+ author = 'Thomas Liske',
11
+ author_email = 'thomas@fiasko-nw.net',
12
+ url = 'https://github.com/liske/python-apds9960/', # use the URL to the github repo
13
+ download_url = 'https://github.com/liske/python-apds9960/archive/0.1.tar.gz', # I'll explain this in a second
14
+ keywords = ['apds9960'], # arbitrary keywords
15
+ classifiers = [],
16
+)
0 commit comments