1+ from setuptools import setup , find_packages
2+ import codecs
3+ import os
4+
5+ here = os .path .abspath (os .path .dirname (__file__ ))
6+
7+ with codecs .open (os .path .join (here , "README.md" ), encoding = "utf-8" ) as fh :
8+ long_description = "\n " + fh .read ()
9+
10+ VERSION = '1.0.0'
11+ DESCRIPTION = 'Python module depending on matplotlib to draw oak leaf.'
12+ LONG_DESCRIPTION = 'Python module depending on matplotlib and angle to draw oak leaf wih specific title.'
13+
14+ setup (
15+ name = "python-oak-leaf-drawer" ,
16+ version = "1.0.0" ,
17+ author = "Karam Mustafa" ,
18+ author_email = "karam2mustafa@gmail.com" ,
19+ description = "Python module depending on matplotlib to draw oak leaf." ,
20+ long_description_content_type = "Python module depending on matplotlib and angle to draw oak leaf wih specific title." ,
21+ long_description = "Python module depending on matplotlib and angle to draw oak leaf wih specific title." ,
22+ packages = find_packages (),
23+ install_requires = ['matplotlib' ],
24+ keywords = ['python' , 'oak' , 'oak-leaf' , 'python-packages' , 'matplotib' ],
25+ classifiers = [
26+ "Development Status :: 1 - Planning" ,
27+ "Intended Audience :: Developers" ,
28+ "Programming Language :: Python :: 3" ,
29+ "Operating System :: Unix" ,
30+ "Operating System :: MacOS :: MacOS X" ,
31+ "Operating System :: Microsoft :: Windows" ,
32+ ]
33+ )
0 commit comments