forked from saymedia/seosuite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kyle Derkacz
committed
Nov 11, 2014
1 parent
c38aa71
commit b253d41
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
], | ||
) |