forked from nightfallai/nightfall-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.13 KB
/
setup.py
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
33
34
35
36
37
38
from setuptools import setup, find_packages
def readme():
"""Return long description from file."""
with open('README.md') as f:
return f.read()
setup(
name="nightfall",
version="1.4.1",
description="Python SDK for Nightfall",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/nightfallai/nightfall-python-sdk",
author="Nightfall",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
"Programming Language :: Python :: 3 :: Only",
],
keywords='nightfall dlp api sdk',
packages=find_packages(exclude=['tests*']),
install_requires=[
'requests',
'urllib3'
],
python_requires='~=3.7'
)