Skip to content

Commit

Permalink
Added setup.py to install script
Browse files Browse the repository at this point in the history
  • Loading branch information
archangelic committed Aug 21, 2016
1 parent 42e703c commit 127a2ee
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
Empty file added cistern/__init__.py
Empty file.
File renamed without changes.
47 changes: 47 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
#!/usr/bin/env python3
from setuptools import setup

setup(
name="cistern",
version="0.1.0",
license="MIT",
url="https://github.com/archangelic/cistern",
description=("Command line tool for downloading torrents from RSS feeds."),
author="Michael Hancock",
author_email="[email protected]",
download_url=(
"https://github.com/archangelic/cistern/archive/v0.1.0.tar.gz"
),
install_requires=[
'click',
'configobj',
'feedparser',
'peewee',
'tabulate',
'transmissionrpc',
],
entry_points={
'console_scripts': [
'cistern=cistern.cistern:cli',
]
},
packages=[
'cistern',
],
keywords=['torrent', 'rss', 'transmission'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Topic :: Internet',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
)

0 comments on commit 127a2ee

Please sign in to comment.