Skip to content

Commit 4b65e13

Browse files
committed
Prepare PyPi upload.
1 parent e80f064 commit 4b65e13

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env python
2+
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

Comments
 (0)