-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- coding: utf-8 -*-
"""
Created on Wed Jul 19 15:02:12 2019
@author: Reuben
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="resultbox",
version="0.2.0",
author="Reuben Rusk",
author_email="pythoro@mindquip.com",
description="Easily manage, tabulate, plot, and store analysis results.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pythoro/resultbox.git",
download_url="https://github.com/pythoro/resultbox/archive/v0.0.5.zip",
packages=["resultbox"],
keywords=["RESULTS"],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=["numpy", "pandas", "scipy", "matplotlib"],
)