Skip to content
This repository was archived by the owner on Jun 7, 2018. It is now read-only.

Commit 6f35b5e

Browse files
committed
Add setup.py
1 parent 6f7214d commit 6f35b5e

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = '0.1.0'

requirements.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
future
1+
future>=0.16.0
2+
evelink>=0.7.5
3+
requests>=2.18.4

setup.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
from setuptools import setup
2+
from . import __version__
3+
4+
5+
setup(name='standingsrequests',
6+
version=__version__,
7+
description='Alliance Auth compatible standings tool module for requesting alt character standings.',
8+
url='https://github.com/basraah/standingsrequests',
9+
author='Basraah',
10+
author_email='[email protected]',
11+
license='GPL-3.0',
12+
packages=['standingsrequests'],
13+
install_requires=[
14+
'future>=0.16.0',
15+
'evelink>=0.7.5',
16+
'requests>=2.18.4',
17+
],
18+
zip_safe=False,
19+
classifiers=[
20+
'License :: OSI Approved :: GNU General Public License v3',
21+
'Natural Language :: English',
22+
'Programming Language :: Python :: 3.5',
23+
'Framework :: Django :: 1.10',
24+
'Framework :: Django :: 1.11',
25+
],
26+
)

0 commit comments

Comments
 (0)