Skip to content

Commit 2e9651a

Browse files
init
1 parent 570956f commit 2e9651a

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

setup.py

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import setuptools
2+
import diffgram.__init__ as init
3+
4+
with open(".././README.md", "r") as fh:
5+
long_description = fh.read()
6+
7+
setuptools.setup(
8+
name = init.__name__,
9+
version = init.__version__,
10+
author="Diffgram",
11+
author_email="[email protected]",
12+
description="SDK for Diffgram",
13+
long_description=long_description,
14+
long_description_content_type="text/markdown",
15+
url="https://github.com/diffgram/python-sdk",
16+
packages=setuptools.find_packages(
17+
exclude=["test", "samples", "ops_scripts"]),
18+
classifiers=[
19+
"Programming Language :: Python :: 3",
20+
"License :: OSI Approved :: MIT License",
21+
"Operating System :: OS Independent",
22+
],
23+
install_requires=[
24+
'requests>=2.20.1',
25+
'opencv-python>=4.0.0.21',
26+
'scipy>=1.1.0',
27+
'six>=1.9.0',
28+
'pillow>=6.1.0'
29+
]
30+
)

0 commit comments

Comments
 (0)