-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 800 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 800 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
import setuptools
from distutils.core import setup
setup(
name='linkauto',
packages=setuptools.find_packages(),
version='0.0.6',
license='MIT',
description='Python wrapper for the private LinkedIn API',
author='Stan van Rooy',
author_email='stan@rooy.dev',
url='https://github.com/stanvanrooy/linkauto',
download_url='https://github.com/stanvanrooy/linkauto/archive/0.0.6.tar.gz',
keywords=['linkedin api', 'private linkedin api'],
install_requires=[
'asyncio'
'orjson',
'aiohttp'
'aioscheduler'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
],
)