Skip to content
This repository has been archived by the owner on Oct 23, 2021. It is now read-only.

Commit

Permalink
Updated setup.py for 0.0.1 release to PyPI
Browse files Browse the repository at this point in the history
Disclaimer: This release is not intended for public usage, API is NOT stable.
  • Loading branch information
jsnel committed Jul 22, 2018
1 parent 8f87d94 commit 5243ff1
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,29 @@
from setuptools import setup
import setuptools

setup(
with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="lmfit-varpro",
version="0.1.0",
version="0.0.1",
description='A variable projection implementation for Python/lmfit.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/glotaran/lmfit-varpro',
download_url = 'https://github.com/glotaran/lmfit-varpro/archive/0.0.1.tar.gz',
keywords = ['alpha'],
author='Joris Snellenburg, '
'Joern Weissenborn',
author_email="""j.snellenburg@vu.nl,
author_email="""j.snellenburg@gmail.com,
joern.weissenborn@gmail.com""",
license='GPLv3',
packages=['lmfit_varpro'],
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
install_requires=[
'numpy',
'lmfit',
Expand Down

0 comments on commit 5243ff1

Please sign in to comment.