Skip to content

Commit 7532b75

Browse files
new setup.py file
1 parent 23afa57 commit 7532b75

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

setup.py

+23
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)