Initial import of existing codebase.

This commit is contained in:
2013-11-11 20:22:27 +00:00
parent 0ff053c2b4
commit 00ab27312c
21 changed files with 736 additions and 0 deletions

27
setup.py Normal file
View File

@@ -0,0 +1,27 @@
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
DESCRIPTION = 'Simplified EVE Online SDE Access in Django'
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
from evesde import __version__ as VERSION
setup(
name='django-evesde',
version=VERSION,
packages=find_packages(exclude='example_project'),
author='Andrew Williams',
author_email='andy@tensixtyone.com',
url='https://github.com/nikdoof/django-evesde',
license='BSD 3-Clause',
include_package_data=True,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=['Django>=1.6', 'eveapi'],
platforms=['any'],
classifiers=[],
)