99def main ():
1010 """Cloudflare API code - setup.py file"""
1111
12- with open ('README.rst ' ) as read_me :
12+ with open ('README.md ' ) as read_me :
1313 long_description = read_me .read ()
1414
1515 with open ('CloudFlare/__init__.py' , 'r' ) as f :
@@ -20,17 +20,13 @@ def main():
2020 version = version ,
2121 description = 'Python wrapper for the Cloudflare v4 API' ,
2222 long_description = long_description ,
23+ long_description_content_type = 'text/markdown' ,
2324 author = 'Martin J. Levy' ,
24- author_email = 'martin@cloudflare.com' ,
25- # maintainer='Martin J. Levy',
26- # maintainer_email='martin@cloudflare.com',
25+ author_email = 'mahtin@mahtin.com' ,
2726 url = 'https://github.com/cloudflare/python-cloudflare' ,
2827 license = 'MIT' ,
2928 options = {"bdist_wheel" : {"universal" : True }},
3029 packages = ['cli4' , 'examples' ]+ find_packages (),
31- #package_dir={'CloudFlare': 'lib'}
32- #package_dir={'CloudFlare/examples': 'examples'},
33- #package_data={'cloudflare-examples': ["examples/*"]},
3430 include_package_data = True ,
3531 data_files = [('share/man/man1' , ['cli4/cli4.1' ])],
3632 install_requires = ['requests' , 'pyyaml' , 'jsonlines' , 'beautifulsoup4' ],
@@ -45,17 +41,9 @@ def main():
4541 'Intended Audience :: Developers' ,
4642 'Topic :: Software Development :: Libraries :: Python Modules' ,
4743 'License :: OSI Approved :: MIT License' ,
48- 'Programming Language :: Python :: 3' ,
49- 'Programming Language :: Python :: 3.2' ,
50- 'Programming Language :: Python :: 3.3' ,
51- 'Programming Language :: Python :: 3.4' ,
52- 'Programming Language :: Python :: 3.5' ,
53- 'Programming Language :: Python :: 3.6' ,
54- 'Programming Language :: Python :: 3.7' ,
55- 'Programming Language :: Python :: 3.8'
44+ 'Programming Language :: Python :: 3'
5645 ]
5746 )
5847
59-
6048if __name__ == '__main__' :
6149 main ()
0 commit comments