-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 681 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 681 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
29
import os
from setuptools import find_packages, setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='n8n',
version='0.11.0',
packages=find_packages(),
include_package_data=True,
license='GPLv3',
url='https://github.com/victorpantoja/n8n-client-python',
author='Victor Pantoja',
author_email='victor.pantoja@gmail.com',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
install_requires=[
"requests"
],
long_description=read('README.md'),
zip_safe=False,
)