Repository URL to install this package:
|
Version:
1.0.22 ▾
|
namara-python
/
setup.py
|
|---|
import setuptools
# This is so we can load the __version__
exec(open('namara_python/version.py').read())
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="namara-python", # Replace with your own username
version=__version__,
author="Thinkdata Works",
author_email="info@thinkdataworks.com",
description="A simple interface for working with Namara in Python",
long_description=long_description,
url="https://thinkdataworks.com",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
],
python_requires='>=3.6',
install_requires=[
"protobuf>=3.5.1,<4",
"requests==2.23.0",
"python-dotenv==0.12.0",
"pandas",
"inflection",
"twirp==0.0.1"
]
)