mirror of
https://github.com/deesiigneer/pyspapi.git
synced 2026-04-20 12:35:26 +00:00
first commit
This commit is contained in:
20
setup.py
Normal file
20
setup.py
Normal file
@@ -0,0 +1,20 @@
|
||||
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,
|
||||
)
|
||||
Reference in New Issue
Block a user