-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 848 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="objectifiedrest",
version=1.1,
author="Shahnawaz Akhtar",
author_email="[email protected]",
description="Wrapper for ORM style access to REST APIs",
long_description="This package allows to call REST endpoints the way we access objects and object properties. You can also pass parameters to refine the result and authenticate to access private data.",
packages=find_packages(),
install_requires=[], # add any additional packages that
# needs to be installed along with your package. Eg: 'caer'
keywords=['python', 'rest', 'api', 'rest api', 'orm', 'rest orm', 'easy rest api access'],
classifiers= []
)