Skip to content

Commit

Permalink
set up shop in the cheese shop
Browse files Browse the repository at this point in the history
  • Loading branch information
goldsmith committed Aug 23, 2013
1 parent e66ac1a commit 0fb612c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.rst LICENSE requirements.txt
29 changes: 29 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
import os

from setuptools import setup
from io import open


long_description = open(os.path.join(os.path.dirname(__file__), "README.rst"), encoding='utf-8').read().encode('ascii', 'ignore')

dependencies = open(os.path.join(os.path.dirname(__file__), "requirements.txt")).readlines()

setup(
name = "wikipedia",
version = "0.9.3",
author = "Jonathan Goldsmith",
author_email = "jhghank@gmail.com",
description = "Wikipedia API for Python",
license = "MIT",
keywords = "python wikipedia API",
url = "https://github.com/goldsmith/Wikipedia",
install_requires = dependencies,
packages = ['wikipedia', 'tests'],
long_description = long_description,
classifiers = (
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
),
)

0 comments on commit 0fb612c

Please sign in to comment.