-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (26 loc) · 921 Bytes
/
setup.py
File metadata and controls
32 lines (26 loc) · 921 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
30
31
32
""" Package setup. """
import setuptools
import datamegh
# Requirements
requirements = ["pyodbc>=4.0.27,<5", "flatten_json==0.1.7", "boto3==1.12.6"]
# Development Requirements
requirements_dev = ["pytest==4.*", "mock==3.0.5", "black==19.10b0", "moto==1.3.14"]
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name=datamegh.name,
version=datamegh.version,
description="Datamegh - Engineered for the cloud.",
author="Kabir Baidhya",
author_email="kabirbaidhya@gmail.com",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/leapfrogtechnology/datamegh",
packages=setuptools.find_packages(),
install_requires=requirements,
extras_require={"dev": requirements_dev},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)