forked from omarryhan/pyfy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·29 lines (25 loc) · 854 Bytes
/
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
import setuptools
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
with open("test_requirements.txt", "r") as f:
test_requirements = f.read().splitlines()
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pyfy",
version="2.0.1",
author="Omar Ryhan",
author_email="omarryhan@gmail.com",
license="MIT",
description="Sync/Async API wrapper for Spotify's web API",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=requirements,
tests_require=test_requirements,
url="https://github.com/omarryhan/pyfy",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)