mirror of
https://github.com/deesiigneer/pyspapi.git
synced 2026-04-20 04:25:25 +00:00
21 lines
540 B
Python
21 lines
540 B
Python
from setuptools import setup
|
|
|
|
from os import path
|
|
this_directory = path.abspath(path.dirname(__file__))
|
|
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
|
|
description = f.read()
|
|
|
|
requires = ['requests==2.25.1']
|
|
|
|
setup(
|
|
name='pyspapi',
|
|
version='1.0.0a',
|
|
description='Framework for SP API',
|
|
long_description=description,
|
|
long_description_content_type='text/markdown',
|
|
author='deesiigneer',
|
|
author_email='xdeesiigneerx@gmail.com',
|
|
packages=['spapi'],
|
|
install_requires=requires,
|
|
)
|