diff --git a/dist/pygis-0.1.tar.gz b/dist/pygis-0.1.tar.gz deleted file mode 100644 index 02225b9..0000000 Binary files a/dist/pygis-0.1.tar.gz and /dev/null differ diff --git a/pygis.egg-info/PKG-INFO b/pygis.egg-info/PKG-INFO deleted file mode 100644 index 0e8ab9f..0000000 --- a/pygis.egg-info/PKG-INFO +++ /dev/null @@ -1,21 +0,0 @@ -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 deleted file mode 100644 index e69de29..0000000 diff --git a/pygis.egg-info/dependency_links.txt b/pygis.egg-info/dependency_links.txt deleted file mode 100644 index 8b13789..0000000 --- a/pygis.egg-info/dependency_links.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/pygis.egg-info/requires.txt b/pygis.egg-info/requires.txt deleted file mode 100644 index 894fd83..0000000 --- a/pygis.egg-info/requires.txt +++ /dev/null @@ -1,2 +0,0 @@ -requests -webdav4 diff --git a/pygis.egg-info/top_level.txt b/pygis.egg-info/top_level.txt deleted file mode 100644 index 17c8610..0000000 --- a/pygis.egg-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -pygis/ diff --git a/setup.py b/setup.py deleted file mode 100644 index f70c283..0000000 --- a/setup.py +++ /dev/null @@ -1,31 +0,0 @@ -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