We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23afa57 commit 7532b75Copy full SHA for 7532b75
setup.py
@@ -0,0 +1,23 @@
1
+from setuptools import setup, find_packages
2
+
3
4
+setup(
5
+ name='nocodb',
6
+ version='0.0.1',
7
+ author='Samuel López Saura',
8
+ author_email='samuellopezsaura@gmail.com',
9
+ packages=find_packages(),
10
+ license='MIT',
11
+ url='https://github.com/ElChicoDePython/python-nocodb',
12
+ classifiers=[
13
+ "Programming Language :: Python :: 3",
14
+ "License :: OSI Approved :: MIT License",
15
+ "Operating System :: OS Independent",
16
+ ],
17
+ description='A package to use NocoDB API in a simple way',
18
+ long_description=open('README.md').read(),
19
+ long_description_content_type="text/markdown",
20
+ install_requires=[
21
+ "requests>=2.0",
22
23
+)
0 commit comments