1+ from setuptools import setup , find_packages
2+
3+ # For consistent encoding
4+ from codecs import open
5+ from os import path
6+
7+ HERE = path .abspath (path .dirname (__file__ ))
8+
9+ with open (path .join (HERE , 'README.md' ), encoding = 'utf-8' ) as f :
10+ long_description = f .read ()
11+
12+ setup (
13+ name = "kuda-python" ,
14+ version = "1.0.0" ,
15+ description = "Kuda OpenAPI Python Library" ,
16+ long_description = long_description ,
17+ long_description_content_type = "text/markdown" ,
18+ url = "https://kuda-python.readthedocs.io/" ,
19+ author = "Chiemezie Njoku" ,
20+ 21+ license = "MIT" ,
22+ classifiers = [
23+ "Intended Audience :: Developers" ,
24+ "License :: OSI Approved :: MIT License" ,
25+ "Programming Language :: Python" ,
26+ "Programming Language :: Python :: 3" ,
27+ "Programming Language :: Python :: 3.6" ,
28+ "Programming Language :: Python :: 3.7" ,
29+ "Programming Language :: Python :: 3.8" ,
30+ "Programming Language :: Python :: 3.9" ,
31+ "Operating System :: OS Independent"
32+ ],
33+ packages = ["kuda" ],
34+ include_package_data = True ,
35+ install_requires = ["requests" ]
36+ )
0 commit comments