mirror of
https://github.com/nikdoof/evestandings.git
synced 2025-12-13 03:02:16 +00:00
31 lines
797 B
Python
Executable File
31 lines
797 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
from standings import __version__
|
|
|
|
setup(name="standings",
|
|
version=__version__,
|
|
description="EVE API Standings Page Generator",
|
|
author="Andrew Williams",
|
|
author_email="andy@tensixtyone.com",
|
|
url="https://github.com/nikdoof/evestandings/",
|
|
keywords="eveapi",
|
|
packages=['standings'],
|
|
package_data={'standings': ['templates/*']},
|
|
entry_points={
|
|
'console_scripts': [
|
|
'evestandings = standings.cli:main',
|
|
]
|
|
},
|
|
classifiers=[
|
|
'License :: OSI Approved :: BSD License',
|
|
'Development Status :: 3 - Alpha',
|
|
],
|
|
install_requirements=[
|
|
'eveapi',
|
|
'ordereddict',
|
|
'jinja2',
|
|
'argparse',
|
|
],
|
|
)
|