Skip to content

Commit

Permalink
Add license and improve setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
titilambert committed Aug 14, 2016
1 parent c0d6a87 commit 201f861
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 4 deletions.
File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.rst
37 changes: 33 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,39 @@

from setuptools import setup

long_desc = """Poor Tux needs a new heart. We do that by feeding it a raspberrypi.
The end goal is to keep Tux's basic functionnality:
- Wings position detection, push buttons and movement
- Mouth movement and position detection
- Eyes position detection, photodetector and lights
- Head button
- Speaker and microphone
- Volume button
"""

packages = ['tuxeatpi',
'tuxeatpi.components',
'tuxeatpi.fake_components',
]

setup(
name='tuxeatpi',
# entry_points="""
# [console_scripts]
# sspii=tuxeatpi.main:main
# """,
version='0.0.1',
packages=packages,
description="""New TuxDroid heart powered by Raspberry pi""",
long_description=long_desc,
author="TuxEatPi Team",
# TODO create team mail
author_email='titilambert@gmail.com',
url="https://github.com/TuxEatPi/tuxeatpi",
download_url="https://github.com/TuxEatPi/tuxeatpi/archive/0.0.1.tar.gz",
package_data={'': ['LICENSE.txt']},
package_dir={'tuxeatpi': 'tuxeatpi'},
include_package_data=True,
license='Apache 2.0',
classifiers=(
'Programming Language :: Python :: 3.5',
)
)

0 comments on commit 201f861

Please sign in to comment.