codeine 0.0.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.
codeine-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.1
2
+ Name: codeine
3
+ Version: 0.0.0
4
+ Author: Gabriel Duran, Michael Peter Dunne
5
+ Classifier: Programming Language :: Python :: 3
6
+ Description-Content-Type: text/markdown
7
+
8
+ # Codeine
9
+
@@ -0,0 +1,2 @@
1
+ # Codeine
2
+
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.1
2
+ Name: codeine
3
+ Version: 0.0.0
4
+ Author: Gabriel Duran, Michael Peter Dunne
5
+ Classifier: Programming Language :: Python :: 3
6
+ Description-Content-Type: text/markdown
7
+
8
+ # Codeine
9
+
@@ -0,0 +1,6 @@
1
+ README.md
2
+ setup.py
3
+ codeine.egg-info/PKG-INFO
4
+ codeine.egg-info/SOURCES.txt
5
+ codeine.egg-info/dependency_links.txt
6
+ codeine.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
codeine-0.0.0/setup.py ADDED
@@ -0,0 +1,22 @@
1
+ import os
2
+
3
+ from setuptools import setup, find_packages
4
+
5
+ requirements = []
6
+ if os.path.isfile('requirements.txt'):
7
+ with open('requirements.txt', 'r') as file_handler:
8
+ requirements = file_handler.readlines()
9
+
10
+ setup(
11
+ name='codeine',
12
+ version='0.0.0',
13
+ author='Gabriel Duran, Michael Peter Dunne',
14
+ long_description=open('README.md').read(),
15
+ long_description_content_type='text/markdown',
16
+ include_package_data=True,
17
+ install_requires=requirements,
18
+ packages=find_packages(include=['codeine', 'codeine.*']),
19
+ classifiers=[
20
+ 'Programming Language :: Python :: 3',
21
+ ],
22
+ )