-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 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
from setuptools import setup, find_packages
with open("README.md") as readme_file:
readme = readme_file.read()
with open("HISTORY.md") as history_file:
history = history_file.read()
requirements = ["molten>=0.7.1", "Authlib>=0.11,<0.13"]
test_requirements = ["pytest", "pytest-cov", "tox"]
setup(
name="molten_jwt",
version="0.3.0",
description="A JSON Web Token library for the Molten web framework",
long_description=readme + "\n\n" + history,
long_description_content_type="text/markdown",
author="Drew Bednar",
author_email="[email protected]",
url="https://github.com/androiddrew/molten-jwt",
packages=find_packages(include=["molten_jwt"]),
include_package_data=True,
install_requires=requirements,
license="MIT",
keywords="molten-jwt molten_jwt molten jwt JWT",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
extras_require={"testing": test_requirements},
)