|
1 | 1 | from distutils.core import setup |
2 | 2 |
|
| 3 | +with open("README.md", "r") as fh: |
| 4 | + long_description = fh.read() |
| 5 | + |
3 | 6 | setup( |
4 | 7 | name='E2Yaml', # How you named your package folder (MyLib) |
5 | 8 | packages=['E2Yaml'], # Chose the same as "name" |
6 | | - version='0.2', # Start with a small number and increase it with every change you make |
| 9 | + version='0.4', # Start with a small number and increase it with every change you make |
7 | 10 | license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository |
8 | 11 | description='An Environment Variable to Yaml Converter', # Give a short description about your library |
| 12 | + long_description=long_description, |
| 13 | + long_description_content_type="text/markdown", |
9 | 14 | author='Joseph Procopio', # Type in your name |
10 | 15 | author_email='josephp27@live.com', # Type in your E-Mail |
11 | 16 | url='https://github.com/josephp27/E2Yaml', # Provide either the link to your github or to your website |
12 | | - download_url='https://github.com/josephp27/E2Yaml/archive/1.0.tar.gz', # I explain this later on |
13 | | - keywords=['Yaml', 'Converter', 'Environment', 'Variable'], # Keywords that define your package best |
| 17 | + download_url='https://github.com/josephp27/E2Yaml/archive/0.4.tar.gz', # I explain this later on |
| 18 | + keywords=['Yaml', 'Converter', 'Environment', 'Variables'], # Keywords that define your package best |
14 | 19 | classifiers=[ |
15 | 20 | "Programming Language :: Python :: 3", |
16 | 21 | "License :: OSI Approved :: MIT License", |
|
0 commit comments