forked from servee/servee
-
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
1 parent
ba50f7d
commit ba4fe9f
Showing
2 changed files
with
23 additions
and
21 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
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 |
---|---|---|
@@ -1,31 +1,31 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name='django-servee', | ||
version=__import__('servee').__version__, | ||
description=__import__('servee').__about__, | ||
long_description=open('README.md').read(), | ||
name="django-servee", | ||
version=__import__("servee").__version__, | ||
description=__import__("servee").__about__, | ||
long_description=open("README.md").read(), | ||
# Get more strings from http://www.python.org/pypi?:action=list_classifiers | ||
author='Kelly Creative Tech - Issac Kelly', | ||
author_email='[email protected]', | ||
url='http://www.servee.com', | ||
#download_url='http://github.com/robhudson/django-debug-toolbar/downloads', | ||
license='BSD', | ||
packages=find_packages(exclude=['ez_setup']), | ||
author="Kelly Creative Tech - Issac Kelly", | ||
author_email="[email protected]", | ||
url="http://www.servee.com", | ||
#download_url="http://github.com/robhudson/django-debug-toolbar/downloads", | ||
license="BSD", | ||
packages=find_packages(exclude=["ez_setup"]), | ||
include_package_data=True, | ||
zip_safe=False, # because we're including media that Django needs | ||
requires = [ | ||
'django-classy-tags', | ||
'django-uni-form', | ||
install_requires = [ | ||
"django-classy-tags>=0.3.3", | ||
"django-uni-form>=0.7.0", | ||
], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Environment :: Web Environment', | ||
'Framework :: Django', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: BSD License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
"Development Status :: 3 - Alpha", | ||
"Environment :: Web Environment", | ||
"Framework :: Django", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
) |