concretedesignpy 0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- concretedesignpy-0.1/PKG-INFO +16 -0
- concretedesignpy-0.1/concretedesignpy.egg-info/PKG-INFO +16 -0
- concretedesignpy-0.1/concretedesignpy.egg-info/SOURCES.txt +6 -0
- concretedesignpy-0.1/concretedesignpy.egg-info/dependency_links.txt +1 -0
- concretedesignpy-0.1/concretedesignpy.egg-info/requires.txt +1 -0
- concretedesignpy-0.1/concretedesignpy.egg-info/top_level.txt +1 -0
- concretedesignpy-0.1/setup.cfg +4 -0
- concretedesignpy-0.1/setup.py +19 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: concretedesignpy
|
|
3
|
+
Version: 0.1
|
|
4
|
+
Summary: This APEC internal use only for Concrete Design using ACI and NSCP
|
|
5
|
+
Home-page: https://github.com/albertp16/apec-py
|
|
6
|
+
Author: Albert Pamonag
|
|
7
|
+
Author-email: albert@apeconsultancy.net
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Dist: matplotlib
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: classifier
|
|
14
|
+
Dynamic: home-page
|
|
15
|
+
Dynamic: requires-dist
|
|
16
|
+
Dynamic: summary
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: concretedesignpy
|
|
3
|
+
Version: 0.1
|
|
4
|
+
Summary: This APEC internal use only for Concrete Design using ACI and NSCP
|
|
5
|
+
Home-page: https://github.com/albertp16/apec-py
|
|
6
|
+
Author: Albert Pamonag
|
|
7
|
+
Author-email: albert@apeconsultancy.net
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Dist: matplotlib
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: classifier
|
|
14
|
+
Dynamic: home-page
|
|
15
|
+
Dynamic: requires-dist
|
|
16
|
+
Dynamic: summary
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
matplotlib
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='concretedesignpy',
|
|
5
|
+
version='0.1',
|
|
6
|
+
description='This APEC internal use only for Concrete Design using ACI and NSCP',
|
|
7
|
+
author='Albert Pamonag',
|
|
8
|
+
author_email='albert@apeconsultancy.net',
|
|
9
|
+
url='https://github.com/albertp16/apec-py',
|
|
10
|
+
packages=find_packages(),
|
|
11
|
+
install_requires=[
|
|
12
|
+
'matplotlib'
|
|
13
|
+
],
|
|
14
|
+
classifiers=[
|
|
15
|
+
'Programming Language :: Python :: 3',
|
|
16
|
+
'Operating System :: OS Independent',
|
|
17
|
+
],
|
|
18
|
+
company='Albert Pamonag Engineering Consultancy',
|
|
19
|
+
)
|