forked from coogger/steemconnect_auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1006 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup
setup(
name="steemconnect_auth",
version='0.0.3',
description='A django application to login with steemconnect.',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author='hakancelik96',
author_email='hakancelik96@outlook.com',
packages=["steemconnect_auth"],
include_package_data=True,
install_requires=["steem-connect"],
url="https://github.com/coogger/django_steemconnect",
license='MIT',
zip_safe=False,
keywords="steemconnect,django steemconnect,steem,django steem,login steemconnect",
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)