Skip to content

Commit 71b82f3

Browse files
committed
Create package
1 parent 07bfa84 commit 71b82f3

10 files changed

+90
-2
lines changed

dist/undefined-1.0.0-py3-none-any.whl

6.57 KB
Binary file not shown.

dist/undefined-1.0.0.tar.gz

7.6 KB
Binary file not shown.

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
pip==19.0.3
2-
wheel==0.33.1
1+
pip>=19.0.3
2+
wheel>=0.33.1
3+
numpy>=1.19.0

setup.cfg

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[metadata]
2+
name = undefined
3+
version = 1.0.0
4+
author = cs107-undefined
5+
description = Auto differetiation library
6+
long_description = file: README.md
7+
long_description_content_type = text/markdown
8+
url = https://github.com/cs107-undefined/cs107-FinalProject
9+
classifiers =
10+
Intended Audience :: Developers
11+
Programming Language :: Python :: 3
12+
Topic :: Software Development :: Libraries :: Python Modules
13+
14+
[options]
15+
package_dir =
16+
= src
17+
packages = find:
18+
python_requires = >=3.6
19+
install_requires =
20+
numpy >= 1.19.0
21+
[options.packages.find]
22+
where = src

src/undefined.egg-info/PKG-INFO

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
Metadata-Version: 2.1
2+
Name: undefined
3+
Version: 1.0.0
4+
Summary: Auto differetiation library
5+
Home-page: https://github.com/cs107-undefined/cs107-FinalProject
6+
Author: cs107-undefined
7+
License: UNKNOWN
8+
Platform: UNKNOWN
9+
Classifier: Intended Audience :: Developers
10+
Classifier: Programming Language :: Python :: 3
11+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
12+
Requires-Python: >=3.6
13+
Description-Content-Type: text/markdown
14+
License-File: LICENSE
15+
16+
# cs107-FinalProject
17+
18+
[![Build Status](https://app.travis-ci.com/cs107-undefined/cs107-FinalProject.svg?branch=milestone2)](https://app.travis-ci.com/cs107-undefined/cs107-FinalProject)
19+
20+
[![codecov](https://codecov.io/gh/cs107-undefined/cs107-FinalProject/branch/milestone2/graph/badge.svg?token=MWEZONI94C)](https://codecov.io/gh/cs107-undefined/cs107-FinalProject)
21+
22+
**Group Number:**
23+
24+
Group 1
25+
26+
**Group Members:**
27+
28+
_Xinran Tang [email protected]_
29+
30+
_Renhao Luo [email protected]_
31+
32+
_Chelse Swoopes [email protected]_
33+
34+
_Shijia Zhang [email protected]_
35+
36+

src/undefined.egg-info/SOURCES.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
LICENSE
2+
README.md
3+
pyproject.toml
4+
setup.cfg
5+
src/undefined/API.py
6+
src/undefined/Calculator.py
7+
src/undefined/GraphGenerator.py
8+
src/undefined/Parser.py
9+
src/undefined/UDFunction.py
10+
src/undefined/Utils.py
11+
src/undefined/__init__.py
12+
src/undefined/__main__.py
13+
src/undefined.egg-info/PKG-INFO
14+
src/undefined.egg-info/SOURCES.txt
15+
src/undefined.egg-info/dependency_links.txt
16+
src/undefined.egg-info/requires.txt
17+
src/undefined.egg-info/top_level.txt
18+
test/test_API.py
19+
test/test_Calculator.py
20+
test/test_UDFunction.py
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

src/undefined.egg-info/requires.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
numpy>=1.19.0

src/undefined.egg-info/top_level.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
undefined

0 commit comments

Comments
 (0)