Skip to content

Commit

Permalink
Prepare PyPI package
Browse files Browse the repository at this point in the history
  • Loading branch information
koenrh committed Sep 28, 2019
1 parent d4d9161 commit c0f8e79
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
name = "delete-tweets"
5 changes: 5 additions & 0 deletions bin/delete-tweets
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env python

from deletetweets import main

main()
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="delete-tweets",
version="1.0.0",
author="Koen Rouwhorst",
author_email="info@koenrouwhorst.nl",
description="Delete tweets from your Twitter timeline.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/koenrh/delete-tweets",
packages=setuptools.find_packages(),
scripts=['bin/delete-tweets'],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
],
python_requires='>=2.7',
)

0 comments on commit c0f8e79

Please sign in to comment.