Skip to content

Commit

Permalink
refined setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
benranderson committed Jun 14, 2018
1 parent 005ed8c commit e4e3462
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 21 deletions.
25 changes: 5 additions & 20 deletions setup.py
Expand Up @@ -7,31 +7,19 @@

from setuptools import setup, find_packages

with open("README.md") as readme_file:
readme = readme_file.read()

requirements = [
"click",
"scipy",
"matplotlib",
]

setup_requirements = ["pytest-runner"]

test_requirements = ["pytest"]

setup(
name="uhb",
version=uhb.__version__,
description="Upheaval Buckling Tools",
long_description=readme,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Ben Randerson",
author_email="ben.m.randerson@gmail.com",
url="https://github.com/benranderson/uhb",
packages=find_packages(include=["uhb"]),
entry_points={"console_scripts": ["uhb=uhb.cli:main"]},
install_requires=open("requirements.txt").readlines(),
include_package_data=True,
install_requires=requirements,
license="MIT License",
zip_safe=False,
keywords="upheaval buckling uhb engineering pipelines",
Expand All @@ -40,11 +28,8 @@
"Intended Audience :: Other Audience",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
test_suite="tests",
tests_require=test_requirements,
setup_requires=setup_requirements,
)
2 changes: 1 addition & 1 deletion uhb/__init__.py
@@ -1,3 +1,3 @@
__author__ = """Ben Randerson"""
__email__ = "ben.m.randerson@email.com"
__version__ = "0.0.1"
__version__ = "0.0.2"

0 comments on commit e4e3462

Please sign in to comment.