forked from openp2pdesign/makerlabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (32 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from distutils.core import setup
setup(
name='makerlabs',
packages=['makerlabs'],
install_requires=[
"kitchen",
"requests",
"mwparserfromhell",
"simplemediawiki",
"wsgiref",
"geojson",
"geopy"
],
version='0.14',
description='A python library for accessing online data about Makerspaces, Fab Labs, Hackerspaces, TechShop...',
author='Massimo Menichinelli',
author_email='[email protected]',
url='https://github.com/openp2pdesign/makerlabs',
download_url='https://github.com/openp2pdesign/makerlabs/releases/tag/v0.14',
keywords=['Fab Lab', 'Fab Lab', 'Makerspace', 'Hackerspace', 'TechShop',
'Makers'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
], )