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.
@@ -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,6 @@
1
+ setup.py
2
+ concretedesignpy.egg-info/PKG-INFO
3
+ concretedesignpy.egg-info/SOURCES.txt
4
+ concretedesignpy.egg-info/dependency_links.txt
5
+ concretedesignpy.egg-info/requires.txt
6
+ concretedesignpy.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )