Skip to content

Commit 8bbf21a

Browse files
author
Procopio
committed
updates setup for pip
1 parent b31b396 commit 8bbf21a

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

E2Yaml/E2Yaml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import re
22
from collections import Mapping
33

4-
from utilities import read_from_clipboard, write_to_clipboard, ignored_term_in_line, \
4+
from E2Yaml.utilities import read_from_clipboard, write_to_clipboard, ignored_term_in_line, \
55
convert_key_value_pairs_to_dictionary, process_key
66

77

E2Yaml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from E2Yaml.E2Yaml import *
1+
from E2Yaml.E2Yaml import *

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
# Inside of setup.cfg
12
[metadata]
23
description-file = README.md

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
from distutils.core import setup
22

3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
36
setup(
47
name='E2Yaml', # How you named your package folder (MyLib)
58
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
710
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
811
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",
914
author='Joseph Procopio', # Type in your name
1015
author_email='josephp27@live.com', # Type in your E-Mail
1116
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
1419
classifiers=[
1520
"Programming Language :: Python :: 3",
1621
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)