Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added dist/pygis-0.1.tar.gz
Binary file not shown.
21 changes: 21 additions & 0 deletions pygis.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -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
Empty file added pygis.egg-info/SOURCES.txt
Empty file.
1 change: 1 addition & 0 deletions pygis.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

2 changes: 2 additions & 0 deletions pygis.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
requests
webdav4
1 change: 1 addition & 0 deletions pygis.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pygis/
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
],
)