Skip to content

Commit

Permalink
Add initial project setup files
Browse files Browse the repository at this point in the history
  • Loading branch information
DEV3L committed Feb 27, 2016
1 parent 17d0d69 commit ea7c45e
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# PyCharm
.idea

# PyPI
*.pypirc

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
15 changes: 15 additions & 0 deletions .pypirc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[distutils]
# This file needs to be put in the home directory
index-servers =
pypi
pypitest

[pypi]
repository=https://pypi.python.org/pypi
username=dev3l
password=xxx

[pypitest]
repository=https://testpypi.python.org/pypi
username=dev3l
password=xxx
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# tay_say
Python repo to test uploading a package to PyPI
Python repo to test uploading a package to PyPI.

The purpose of this package is to output a random Taylor Swift lyric when called.

## How to submit a package to PyPI
http://peterdowns.com/posts/first-time-with-pypi.html
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.md
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from distutils.core import setup
setup(
name = 'tay_say',
packages = ['tay_say'], # this must be the same as the name above
version = '0.1',
description = 'A simple lib that prints out a random Taylor Swift lyric',
author = 'Justin Beall',
author_email = 'jus.beall@gmail.com',
url = 'https://github.com/DEV3L/python-tay-say',
download_url = 'https://github.com/DEV3L/python-tay-say/tarball/0.1',
keywords = ['testing', 'dev3l', 'taylor swift'], # arbitrary keywords
classifiers = [],
)
1 change: 1 addition & 0 deletions tay_say/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__author__ = 'dev3l'

0 comments on commit ea7c45e

Please sign in to comment.