-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 794 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import find_packages, setup
setup(
name="prsaw",
version="0.4.0",
description="PRSAW, an acronym for `Python Random Stuff API Wrapper`, is a wrapper for the Random Stuff API.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/CodeWithSwastik/prsaw",
author="Swas.py",
author_email="cwswas.py@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
keywords="random stuff, api, wrapper",
packages=find_packages(),
install_requires=["instant-api-client==0.1.2"],
)