imsciences 0.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.1
2
+ Name: imsciences
3
+ Version: 0.0.1
4
+ Summary: IMS Data Processing Package
5
+ Author: IMS Cam
6
+ Author-email: thecjrobs@gmail.com
7
+ Keywords: python,data processing
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Operating System :: Unix
12
+ Classifier: Operating System :: MacOS :: MacOS X
13
+ Classifier: Operating System :: Microsoft :: Windows
14
+ Description-Content-Type: text/markdown
15
+
16
+ This package contains a series of functions aimed to improve the data processing process
@@ -0,0 +1 @@
1
+ This is the IMS data processing package here will lie the documentation for the files.
@@ -0,0 +1 @@
1
+ from .datafunctions import hello
@@ -0,0 +1,2 @@
1
+ def hello():
2
+ print("Hello from IMS")
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.1
2
+ Name: imsciences
3
+ Version: 0.0.1
4
+ Summary: IMS Data Processing Package
5
+ Author: IMS Cam
6
+ Author-email: thecjrobs@gmail.com
7
+ Keywords: python,data processing
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Operating System :: Unix
12
+ Classifier: Operating System :: MacOS :: MacOS X
13
+ Classifier: Operating System :: Microsoft :: Windows
14
+ Description-Content-Type: text/markdown
15
+
16
+ This package contains a series of functions aimed to improve the data processing process
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ imsciences/__init__.py
4
+ imsciences/datafunctions.py
5
+ imsciences.egg-info/PKG-INFO
6
+ imsciences.egg-info/SOURCES.txt
7
+ imsciences.egg-info/dependency_links.txt
8
+ imsciences.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ imsciences
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,29 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ VERSION = '0.0.1'
4
+ DESCRIPTION = 'IMS Data Processing Package'
5
+ LONG_DESCRIPTION = 'This package contains a series of functions aimed to improve the data processing process'
6
+
7
+ # Setting up
8
+ setup(
9
+ name="imsciences",
10
+ version=VERSION,
11
+ author="IMS Cam",
12
+ author_email='thecjrobs@gmail.com',
13
+ description=DESCRIPTION,
14
+ long_description_content_type="text/markdown",
15
+ long_description=LONG_DESCRIPTION,
16
+ packages=find_packages(),
17
+ install_requires=[
18
+ # Add any dependencies your package requires here
19
+ ],
20
+ keywords=['python', 'data processing'],
21
+ classifiers=[
22
+ "Development Status :: 3 - Alpha",
23
+ "Intended Audience :: Developers",
24
+ "Programming Language :: Python :: 3",
25
+ "Operating System :: Unix",
26
+ "Operating System :: MacOS :: MacOS X",
27
+ "Operating System :: Microsoft :: Windows",
28
+ ]
29
+ )