-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 839 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 839 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
from setuptools import setup, find_packages
# Set the library's long description to the repo's README.md
with open('README.md', 'r') as readme_file:
readme = readme_file.read()
requirements = ['requests>=2']
setup(
name='abstract_python_core',
version='1.1.0',
author='Benjamin Bouchet',
author_email='libraries@abstractapi.com',
description='AbstractAPI Python Core Library - Used by the other Abstract API libraries.',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/abstractapi/python-core',
packages=find_packages(),
install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
)