acellera-pyacemd 0.0.0.post1__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,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: acellera-pyacemd
3
+ Version: 0.0.0.post1
4
+ Home-page:
5
+ Author: Acellera
6
+ Author-email: info@acellera.com
7
+ Classifier: Operating System :: POSIX :: Linux
8
+ Description-Content-Type: text/markdown
9
+ Dynamic: author
10
+ Dynamic: author-email
11
+ Dynamic: classifier
12
+ Dynamic: description-content-type
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: acellera-pyacemd
3
+ Version: 0.0.0.post1
4
+ Home-page:
5
+ Author: Acellera
6
+ Author-email: info@acellera.com
7
+ Classifier: Operating System :: POSIX :: Linux
8
+ Description-Content-Type: text/markdown
9
+ Dynamic: author
10
+ Dynamic: author-email
11
+ Dynamic: classifier
12
+ Dynamic: description-content-type
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ acellera_pyacemd.egg-info/PKG-INFO
3
+ acellera_pyacemd.egg-info/SOURCES.txt
4
+ acellera_pyacemd.egg-info/dependency_links.txt
5
+ acellera_pyacemd.egg-info/not-zip-safe
6
+ acellera_pyacemd.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
+ import setuptools
2
+
3
+ if __name__ == "__main__":
4
+ setuptools.setup(
5
+ name="acellera-pyacemd",
6
+ version="0.0.0.post1",
7
+ author="Acellera",
8
+ author_email="info@acellera.com",
9
+ description="",
10
+ long_description="",
11
+ long_description_content_type="text/markdown",
12
+ url="",
13
+ classifiers=[
14
+ "Operating System :: POSIX :: Linux",
15
+ ],
16
+ packages=setuptools.find_packages(),
17
+ zip_safe=False,
18
+ install_requires=[],
19
+ )