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