DynamiSpectra 0.1.0__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,15 @@
1
+ Metadata-Version: 2.1
2
+ Name: DynamiSpectra
3
+ Version: 0.1.0
4
+ Summary: Molecular dynamics scripts
5
+ Home-page: https://github.com/SeuUsuario/DynamiSpectra
6
+ Author: Iverson Conrado-Bezerra
7
+ Author-email: iverson.coonrado@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: numpy
14
+ Requires-Dist: matplotlib
15
+ Requires-Dist: pandas
File without changes
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,31 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='DynamiSpectra',
5
+ version='0.1.0',
6
+ packages=find_packages(where='src'),
7
+ package_dir={'': 'src'},
8
+ install_requires=[
9
+ # Adicione bibliotecas necessárias, como:
10
+ 'numpy',
11
+ 'matplotlib',
12
+ 'pandas',
13
+ ],
14
+ entry_points={
15
+ 'console_scripts': [
16
+ 'dynami=dynamiSpectra.main:main', # Ajuste conforme o ponto de entrada
17
+ ],
18
+ },
19
+ author='Iverson Conrado-Bezerra',
20
+ author_email='iverson.coonrado@gmail.com',
21
+ description='Molecular dynamics scripts',
22
+ long_description=open('README.md').read(),
23
+ long_description_content_type='text/markdown',
24
+ url='https://github.com/SeuUsuario/DynamiSpectra',
25
+ classifiers=[
26
+ 'Programming Language :: Python :: 3',
27
+ 'License :: OSI Approved :: MIT License',
28
+ 'Operating System :: OS Independent',
29
+ ],
30
+ python_requires='>=3.8',
31
+ )
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.1
2
+ Name: DynamiSpectra
3
+ Version: 0.1.0
4
+ Summary: Molecular dynamics scripts
5
+ Home-page: https://github.com/SeuUsuario/DynamiSpectra
6
+ Author: Iverson Conrado-Bezerra
7
+ Author-email: iverson.coonrado@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: numpy
14
+ Requires-Dist: matplotlib
15
+ Requires-Dist: pandas
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ src/DynamiSpectra.egg-info/PKG-INFO
4
+ src/DynamiSpectra.egg-info/SOURCES.txt
5
+ src/DynamiSpectra.egg-info/dependency_links.txt
6
+ src/DynamiSpectra.egg-info/entry_points.txt
7
+ src/DynamiSpectra.egg-info/requires.txt
8
+ src/DynamiSpectra.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ dynami = dynamiSpectra.main:main
@@ -0,0 +1,3 @@
1
+ numpy
2
+ matplotlib
3
+ pandas