Skip to content

Commit

Permalink
Merge pull request #37 from iconfinder/fix/readme
Browse files Browse the repository at this point in the history
Fix project description on PyPi
  • Loading branch information
JanmanX authored Jan 6, 2021
2 parents 9a01534 + 089ac31 commit 4ee5464
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 21 deletions.
18 changes: 9 additions & 9 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Copyright 2017 Iconfinder <[email protected]>

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
16 changes: 4 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
except ImportError:
from distutils.core import setup

from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst')) as f:
long_description = f.read()
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()

packages = [
'pyvat',
Expand All @@ -28,24 +26,18 @@

setup(
name='pyvat',
version='1.3.10',
version='1.3.26',
description='VAT validation for Python',
long_description=long_description,
long_description_content_type='text/x-rst',
long_description_content_type="text/x-rst",
author='Iconfinder',
author_email='[email protected]',
url='https://www.iconfinder.com',
project_urls={
'Issue Tracker': 'https://github.com/iconfinder/pyvat/issues',
},
packages=packages,
package_data={'': ['LICENSE']},
package_dir={'pyvat': 'pyvat'},
include_package_data=True,
tests_require=tests_require,
install_requires=requires,
license=open('LICENSE').read(),
zip_safe=True,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 4ee5464

Please sign in to comment.