Rework application layout.

This commit is contained in:
2013-10-14 00:12:29 +01:00
parent cbc7d1eb9f
commit bca47e6331
7 changed files with 123 additions and 119 deletions

View File

@@ -1,21 +1,24 @@
#!/usr/bin/env python
from distutils.core import setup
from setuptools 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',
]
setup(name="standings",
version=__version__,
description="EVE API Standings Page Generator",
author="Andrew Williams",
author_email="andy@tensixtyone.com",
url="https://dev.pleaseignore.com/",
keywords="eveapi",
packages=['standings'],
package_data={'standings': ['templates/*.html']},
entry_points={
'console_scripts': [
'evestandings = standings.cli:main',
]
},
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 3 - Alpha',
]
)