-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
47 lines (42 loc) · 1.58 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
from setuptools import setup
required = {'param':">=1.10.0",
'panel':">=0.10.0",
'pygridgen':">0.2",
'geopandas':">=0.8.1",
'holoviews':">=1.13.5"}
setup_args = dict(
name='hologridgen',
version='1.0.2',
description='',
long_description=open('README.md').read(),
long_description_type='text/markdown',
author="jlstevens",
author_email="[email protected]",
platforms=['Windows', 'Mac OS X', 'Linux'],
license='CC0',
url='https://github.com/pygridgen/hologridgen',
packages=["hologridgen"],
provides=["hologridgen"],
python_requires=">=3.5",
project_urls={
"Bug Tracker": "https://github.com/pygridgen/hologridgen/issues",
"Source Code": "https://github.com/pygridgen/hologridgen",
},
classifiers=[
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries"]
)
setup_args['install_requires']=["%s (%s)" % (package, version)
for package,version in required.items()]
if __name__=="__main__":
setup(**setup_args)