-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 822 Bytes
/
setup.py
File metadata and controls
37 lines (32 loc) · 822 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
29
30
31
32
33
34
35
36
37
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
test_reqs = [
'mock==2.0.0'
]
doc_reqs = [
]
extra_reqs = {
'doc': doc_reqs,
'test': test_reqs
}
setup(
name='wavyfm',
version='1.0.3',
description='Official Python library for wavy.fm',
long_description=long_description,
long_description_content_type="text/markdown",
author="Aram Peres",
author_email="aram.peres@wavy.fm",
url='https://wavy.fm/developers',
project_urls={
'Documentation': 'https://github.com/wavy/wavyfm-python',
'Source': 'https://github.com/wavy/wavyfm-python',
},
install_requires=[
'requests>=2.26.0'
],
tests_require=test_reqs,
extras_require=extra_reqs,
license='LICENSE.md',
packages=['wavyfm'])