-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
version_info = ('3', '0', '2') | ||
version_info = ('3', '0', '3') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,8 @@ | |
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') | ||
$ python -c "import amara3.version; print(amara3.version.version_info)" | ||
('3', '0', '3') | ||
''' | ||
|
||
import sys | ||
|
@@ -24,16 +24,14 @@ | |
PROJECT_LICENSE = 'License :: OSI Approved :: Apache Software License' | ||
PROJECT_AUTHOR = 'Uche Ogbuji' | ||
PROJECT_AUTHOR_EMAIL = '[email protected]' | ||
PROJECT_URL = 'https://github.com/uogbuji/amara3-xml' | ||
PROJECT_URL = 'https://github.com/uogbuji/amara3-iri' | ||
PACKAGE_DIR = {'amara3': 'pylib'} | ||
PACKAGES = [ | ||
'amara3', | ||
'amara3.contrib', | ||
] | ||
SCRIPTS = [] | ||
|
||
#FIXME: Trim some of these as amara3-xml & versa setup.py files are updated to handle requirements | ||
#See: requirements.txt | ||
CORE_REQUIREMENTS = [ | ||
'pytest', | ||
] | ||
|
@@ -60,7 +58,7 @@ | |
LONGDESC = '''Core of the Amara3 project, which provides a variety of data processing tools. Core is mostly a library for handling Internationalized Resource Identifiers (IRIs) | ||
''' | ||
|
||
LONGDESC_CTYPE = 'text/markdown', | ||
LONGDESC_CTYPE = 'text/markdown' | ||
|
||
|
||
setup( | ||
|