Skip to content

Commit

Permalink
Adding a setup.py for distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Derkacz committed Nov 11, 2014
1 parent c38aa71 commit b253d41
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
from distutils.core import setup

setup(
# Application name:
name="SEOSuite",

# Version number (initial):
version="0.1.0",

# Application author details:
author="Say Media",

# Include additional files into the package
include_package_data=True,

# Details
url="http://pypi.python.org/pypi/MyApplication_v010/",

#
license="LICENSE-MIT",
description="A suite of SEO tools.",

long_description=open("README.md").read(),

# Dependent packages (distributions)
install_requires=[
'MySQL-python>=1.2.5',
'PyYAML>=3.10',
'requests',
'beautifulsoup4',
'lxml',
],
)

0 comments on commit b253d41

Please sign in to comment.