diff --git a/dist/pygis-0.1.tar.gz b/dist/pygis-0.1.tar.gz new file mode 100644 index 0000000..02225b9 Binary files /dev/null and b/dist/pygis-0.1.tar.gz differ diff --git a/pygis.egg-info/PKG-INFO b/pygis.egg-info/PKG-INFO new file mode 100644 index 0000000..0e8ab9f --- /dev/null +++ b/pygis.egg-info/PKG-INFO @@ -0,0 +1,21 @@ +Metadata-Version: 2.1 +Name: pygis +Version: 0.1 +Summary: An magis python library +Home-page: https://github.com/user/reponame +Download-URL: https://github.com/user/reponame/archive/v_01.tar.gz +Author: Stoppedwumm +Author-email: your.email@domain.com +License: MIT +Keywords: SOME,MEANINGFULL,KEYWORDS +Classifier: Development Status :: 3 - Alpha +Classifier: Intended Audience :: Developers +Classifier: Topic :: Software Development :: Build Tools +Classifier: License :: OSI Approved :: MIT License +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +License-File: LICENSE +Requires-Dist: requests +Requires-Dist: webdav4 diff --git a/pygis.egg-info/SOURCES.txt b/pygis.egg-info/SOURCES.txt new file mode 100644 index 0000000..e69de29 diff --git a/pygis.egg-info/dependency_links.txt b/pygis.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/pygis.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/pygis.egg-info/requires.txt b/pygis.egg-info/requires.txt new file mode 100644 index 0000000..894fd83 --- /dev/null +++ b/pygis.egg-info/requires.txt @@ -0,0 +1,2 @@ +requests +webdav4 diff --git a/pygis.egg-info/top_level.txt b/pygis.egg-info/top_level.txt new file mode 100644 index 0000000..17c8610 --- /dev/null +++ b/pygis.egg-info/top_level.txt @@ -0,0 +1 @@ +pygis/ diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f70c283 --- /dev/null +++ b/setup.py @@ -0,0 +1,31 @@ +from distutils.core import setup +setup( + name = 'pygis', # How you named your package folder (MyLib) + packages = ['pygis/'], + package_dir = {"": "/workspaces/"}, # Chose the same as "name" + version = '0.1', # Start with a small number and increase it with every change you make + license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository + description = 'An magis python library', # Give a short description about your library + author = 'Stoppedwumm', # Type in your name + author_email = 'your.email@domain.com', # Type in your E-Mail + url = 'https://github.com/user/reponame', # Provide either the link to your github or to your website + download_url = 'https://github.com/user/reponame/archive/v_01.tar.gz', # I explain this later on + keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'], # Keywords that define your package best + install_requires=[ # I get to this in a second + 'requests', + 'webdav4', + ], + classifiers=[ + 'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package + + 'Intended Audience :: Developers', # Define that your audience are developers + 'Topic :: Software Development :: Build Tools', + + 'License :: OSI Approved :: MIT License', # Again, pick a license + + 'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + ], +) \ No newline at end of file