Skip to content

Commit

Permalink
Updated setup.py and development version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
segsell committed Mar 10, 2020
1 parent 5351eb1 commit 502baec
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion grmpy/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.3.dev"
__version__ = "0.1.3.dev1"
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,20 @@
# Note: To use the 'upload' functionality of this file, you must:
# $ pip install twine

import io
import os
import sys
from pathlib import Path
from shutil import rmtree

from setuptools import find_packages, setup, Command

# Package meta-data.
NAME = "grmpy"
DESCRIPTION = "grmpy is a package for the simulation and analysis of the generalized Roy model."
DESCRIPTION = "grmpy is a Python package for the simulation and estimation of the generalized Roy model."
README = Path("README.md").read_text()
URL = "http://grmpy.readthedocs.io"
EMAIL = "eisenhauer@policy-lab.org"
AUTHOR = "Philipp Eisenhauer"
AUTHOR = "The grmpy Development Team"

# What packages are required for this module to be executed?
REQUIRED = [
Expand All @@ -30,7 +31,7 @@
"matplotlib",
"seaborn",
"scikit-misc",
"numba"
"numba",
]

# The rest you shouldn't have to touch too much :)
Expand Down Expand Up @@ -87,6 +88,8 @@ def run(self):
name=NAME,
version=about["__version__"],
description=DESCRIPTION,
long_description=DESCRIPTION + "\n\n" + README,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=EMAIL,
url=URL,
Expand All @@ -95,4 +98,4 @@ def run(self):
license="MIT",
include_package_data=True,
cmdclass={"publish": PublishCommand},
)
)

0 comments on commit 502baec

Please sign in to comment.