-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
31 lines (30 loc) · 967 Bytes
/
setup.py
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
from setuptools import setup, find_packages
from os import getcwd
setup(
name='FigmaPy',
version='2018.1.0',
description='Figma API wrapper.',
# Keywords
keywords=['Amatobahn', 'Figma', 'pypi', 'package'],
# The project's main homepage.
url='https://www.IamGregAmato.com',
# Author details.
author='Greg Amato',
author_email='[email protected]',
# License
license='Apache License v2.0',
# Classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only',
],
# Packages
packages=['FigmaPy'],
# Required dependencies. Will be installed by pip
# when the project is installed.
install_requires=['requests'],
extra_requires={"async": ["aiohttp"]},
)