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.
- imsciences-0.0.1/PKG-INFO +16 -0
- imsciences-0.0.1/README.md +1 -0
- imsciences-0.0.1/imsciences/__init__.py +1 -0
- imsciences-0.0.1/imsciences/datafunctions.py +2 -0
- imsciences-0.0.1/imsciences.egg-info/PKG-INFO +16 -0
- imsciences-0.0.1/imsciences.egg-info/SOURCES.txt +8 -0
- imsciences-0.0.1/imsciences.egg-info/dependency_links.txt +1 -0
- imsciences-0.0.1/imsciences.egg-info/top_level.txt +1 -0
- imsciences-0.0.1/setup.cfg +4 -0
- imsciences-0.0.1/setup.py +29 -0
|
@@ -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,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
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
imsciences
|
|
@@ -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
|
+
)
|