Initial import

This commit is contained in:
2011-11-02 13:52:41 +00:00
commit 233c2946de
8 changed files with 302 additions and 0 deletions

21
setup.py Executable file
View File

@@ -0,0 +1,21 @@
#!/usr/bin/env python
from distutils.core import setup
from standings import __version__
setup(name = "standings",
version = __version__,
description = "EVE API Standings Page Generator",
author = "Andrew Willaims",
author_email = "andy@tensixtyone.com",
url = "https://dev.pleaseignore.com/",
keywords = "eveapi",
packages = ['standings',],
scripts = ['scripts/evestandings'],
package_data={'standings': ['templates/*.html']},
classifiers = [
'License :: OSI Approved :: BSD License',
'Development Status :: 3 - Alpha',
]
)