-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (41 loc) · 1.27 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (41 loc) · 1.27 KB
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
41
42
43
44
45
from pathlib import Path
from setuptools import find_packages, setup
version_metadata = {}
with open('lfapi/_version.py') as f:
exec(f.read(), version_metadata)
long_description = (Path(__file__).parent / 'README.md').read_text()
setup(
name='lfapi',
version=version_metadata["__version__"],
author='Joseph Masom',
author_email='joseph.masom@listenfirstmedia.com',
url='https://github.com/ListenFirstMedia/lf-python-sdk',
download_url='https://pypi.org/project/lfapi',
license='MIT',
packages=find_packages(include=['lfapi']),
description='The Python library for the ListenFirst API',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'requests~=2.31.0'
],
setup_requires=[
'pytest_runner~=6.0.0'
],
tests_require=[
'pytest~=7.2.1'
],
test_suite='tests',
python_requires='>=3.8, <4',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
keywords=['listenfirst api sdk']
)