-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
52 lines (50 loc) · 1.52 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#from distutils.core import setup
from setuptools import setup
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='makerlabs',
packages=['makerlabs'],
install_requires=[
"bs4",
"certifi",
"charset-normalizer",
"geographiclib",
"geojson",
"geopy",
"idna",
"jellyfish",
"lxml",
"numpy",
"pandas",
"pathlib",
"pycountry",
"python-dateutil",
"pytz",
"requests",
"six",
"soupsieve",
"urllib3",
"us"
],
version='0.32',
long_description=long_description,
long_description_content_type='text/markdown',
author='Massimo Menichinelli',
author_email='[email protected]',
url='https://github.com/openp2pdesign/makerlabs',
download_url='https://github.com/openp2pdesign/makerlabs/releases/tag/v0.32',
keywords=['Fab Lab', 'Fab Lab', 'Makerspace', 'Hackerspace', 'Repair Cafes',
'Makers', 'DIYbio'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
], )