Skip to content

Commit

Permalink
PIP name collision resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
belov38 committed Jun 18, 2019
1 parent 56a77f3 commit a508a50
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion odata1c/__init__.py → odata1cw/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__author__ = '[email protected]'
__version__ = '0.0.1'
__version__ = '0.0.2'
4 changes: 2 additions & 2 deletions odata1c/catalog.py → odata1cw/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import requests

from odata1c.core import Infobase
from odata1c.utils import make_url_part
from odata1cw.core import Infobase
from odata1cw.utils import make_url_part


class Catalog:
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions odata1c/document.py → odata1cw/document.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

import requests

from odata1c.core import Infobase
from odata1c.postingmode import PostingMode
from odata1c.utils import make_url_part
from odata1cw.core import Infobase
from odata1cw.postingmode import PostingMode
from odata1cw.utils import make_url_part


class Document:
Expand Down
File renamed without changes.
File renamed without changes.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,18 @@
long_description = fh.read()

setuptools.setup(
name="odata1c",
version="0.0.1",
name="odata1cw",
version="0.0.2",
author="Ilia Belov",
author_email="[email protected]",
description="1C-Odata wrapper",
long_description="1C (v8.1c.ru) OData wrapper.",
long_description_content_type="text/markdown",
url="https://github.com/belov38/1c-odata",
packages=setuptools.find_packages(),
install_requires=[
'requests',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit a508a50

Please sign in to comment.