-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
40 lines (36 loc) · 1.2 KB
/
setup.py
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
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
import pathlib
def long_description():
here = pathlib.Path(__file__).parent.resolve()
return (here / 'README.md').read_text()
setup(
name='django-steamauth',
packages=find_packages(),
version='1.1.2.3',
author='blurfx',
author_email='iam@xo.dev',
license='MIT License',
url='https://github.com/blurfx/django-steamauth',
description='Django integrated Steam OpenID auth library',
long_description=long_description(),
long_description_content_type='text/markdown',
keywords=['django', 'steam', 'valve', 'steamid', 'openid'],
python_requires='>=3',
install_requires=[
'django',
'requests',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: MIT License'
],
project_urls={ # Optional
'Bug Reports': 'https://github.com/blurfx/django-steamauth/issues',
'Source': 'https://github.com/blurfx/django-steamauth',
},
)