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 +9 -0
- codeine-0.0.0/README.md +2 -0
- codeine-0.0.0/codeine.egg-info/PKG-INFO +9 -0
- codeine-0.0.0/codeine.egg-info/SOURCES.txt +6 -0
- codeine-0.0.0/codeine.egg-info/dependency_links.txt +1 -0
- codeine-0.0.0/codeine.egg-info/top_level.txt +1 -0
- codeine-0.0.0/setup.cfg +4 -0
- codeine-0.0.0/setup.py +22 -0
codeine-0.0.0/PKG-INFO
ADDED
codeine-0.0.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
codeine-0.0.0/setup.cfg
ADDED
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
|
+
)
|