Skip to content

Commit

Permalink
pip package, release 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbenes1996 committed May 30, 2020
1 parent f5c7e0b commit 7603da6
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
7 changes: 7 additions & 0 deletions publish.sh
@@ -0,0 +1,7 @@

# remove previous releases
rm -rf build/ dist/ covid19sweden.egg-info/ __pycache__/
# compile
python setup.py sdist bdist_wheel
# publish
python -m twine upload dist/*
37 changes: 37 additions & 0 deletions setup.py
@@ -0,0 +1,37 @@

import setuptools
with open("README.md", "r", encoding="UTF-8") as fh:
long_description = fh.read()

setuptools.setup(
name = 'covid19sweden',
version = '0.0.1',
author = 'Martin Beneš',
author_email = 'martinbenes1996@gmail.com',
description = 'Web Scraper for Sweden COVID19 data.',
long_description = long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
license='MPL',
url = 'https://github.com/martinbenes1996/covid19sweden',
download_url = 'https://github.com/martinbenes1996/covid19sweden/archive/0.0.2.tar.gz',
keywords = ['2019-nCov', 'sweden', 'coronavirus', 'covid-19', 'covid-data', 'covid19-data'],
install_requires=[],
package_dir={'': '.'},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Topic :: Database',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)

0 comments on commit 7603da6

Please sign in to comment.