-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
34 lines (29 loc) · 881 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
# extract version from __init__.py
with open('s2sphere/__init__.py', 'r') as f:
version_line = [l for l in f if l.startswith('__version__')][0]
VERSION = version_line.split('=')[1].strip()[1:-1]
setup(
name='s2sphere',
version=VERSION,
description='Python implementation of the amazing S2 Geometry Library',
long_description=open('README.rst').read(),
author='Jonathan Gillham',
author_email='',
url='http://github.com/qedus/sphere',
packages=['s2sphere'],
install_requires=['future'],
extras_require={
'tests': [
'nose>=1.3.4',
'numpy>=1.11.0'
]
},
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 33',
'Programming Language :: Python :: 2',
],
)