Skip to content

Commit

Permalink
Merge pull request #4 from uogbuji/develop
Browse files Browse the repository at this point in the history
Prep 3.0.1 release
  • Loading branch information
uogbuji authored Jan 19, 2019
2 parents bee64ca + 9664513 commit fa14892
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 210 deletions.
207 changes: 0 additions & 207 deletions lib/asynctools.py

This file was deleted.

2 changes: 1 addition & 1 deletion pylib/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version_info = ('3', '0', '0')
version_info = ('3', '0', '1')
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Meant to be a PEP 420 Namespace package so no __init__.py
Highly recommend installing using `pip install .` not `python setup.py install`
Uses pkgutil-style namespace package (Working on figuring out PEP 420)
Note: careful not to conflate install_requires with requirements.txt
https://packaging.python.org/discussions/install-requires-vs-requirements/
Reluctantly use setuptools to get install_requires & long_description_content_type
Reluctantly use setuptools for now to get install_requires & long_description_content_type
$ python -c "import amara3; import amara3.iri; import amara3.uxml; import amara3.uxml.version; print(amara3.uxml.version.version_info)"
('3', '0', '1')
'''

import sys
Expand Down Expand Up @@ -59,6 +64,7 @@


setup(
#namespace_packages=['amara3'],
name=PROJECT_NAME,
version=__version__,
description=PROJECT_DESCRIPTION,
Expand Down

0 comments on commit fa14892

Please sign in to comment.