File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 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 = "support@diffgram.com" ,
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+ )
You can’t perform that action at this time.
0 commit comments