Skip to content

Commit

Permalink
Add dependencies and correct license before publishing to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
duskobogdanovski committed Apr 15, 2021
1 parent 590bdf3 commit 3d53ee1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include README.rst
include README.md
include LICENSE
include requirements.txt
recursive-include ckanext/visualize *.html *.json *.js *.less *.css *.mo *.yml *.png
21 changes: 8 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# http://packaging.python.org/en/latest/tutorial.html#version
version='0.0.1',
version='1.0.0',

description='''Visualize tabular data in CKAN''',
long_description=long_description,
Expand All @@ -33,26 +33,26 @@
url='https://github.com/keitaroinc/ckanext-visualize',

# Author details
author='''Aleksandar Jovanov''',
author_email='''aleksandar.jovanov@keitaro.com''',
author='''Keitaro Inc''',
author_email='''info@keitaro.com''',

# Choose your license
license='AGPL',
license='MIT',

# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',

# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'License :: OSI Approved :: MIT License',

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.8',
],


Expand All @@ -64,12 +64,7 @@
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
namespace_packages=['ckanext'],

install_requires=[
# CKAN extensions should not list dependencies here, but in a separate
# ``requirements.txt`` file.
#
# http://docs.ckan.org/en/latest/extensions/best-practices.html#add-third-party-libraries-to-requirements-txt
],
install_requires=['natsort==7.1.1'],

# If there are data files included in your packages that need to be
# installed, specify them here. If using Python 2.6 or less, then these
Expand Down

0 comments on commit 3d53ee1

Please sign in to comment.