-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·37 lines (34 loc) · 1.1 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
#!/usr/bin/env python3
#-*- coding: utf-8 -*-
'''
Geodetic Conversion from Lat/Lon to Dymaxion Fuller Projection
Where to go from here?
* `pip install --editable .`
* `python3 -m dymax.examples`
* `python3 setup.py test`
* `pytest --doctest-modules`
* `pylint dymax`
'''
from setuptools import setup
import os, re
with open(os.path.join('dymax', '__init__.py')) as derp:
version = re.search(r'__version__\s*=\s*[\'"]([^\'"]*)[\'"]', derp.read()).group(1)
setup(
name='dymax',
version=version,
author='Teque5',
maintainer='Teque5',
url='https://github.com/Teque5/pydymax',
packages=['dymax'],
description='Dymaxion Fuller Projection Utilities',
long_description=__doc__,
license='Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)',
install_requires=['numpy', 'matplotlib', 'Pillow', 'numba'],
package_data={'dymax': ['data/*.xz', 'data/*.jpg']},
test_suite='tests',
classifiers=[
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Visualization',
],
)