-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 980 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 980 Bytes
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
# -*- coding: utf-8 -*-
"""
Created on Sat Apr 1 13:56:42 2023
@author: Diego
"""
from setuptools import setup, find_packages
setup(
name = "gerber",
version = "0.1",
description = "Package for using the gerber statistic for various statistical techniques",
author = "Diego Alvarez",
author_email = ["[email protected]", "[email protected]"],
packages = find_packages(),
install_requires = [
"pandas >= 1.0.0",
"numpy >= 1.18.0",
"itertools >= 1.0.0"],
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audiance :: Developers, Finance / Insurance, Science / Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Langauge :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"])