-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py~
More file actions
19 lines (17 loc) · 709 Bytes
/
setup.py~
File metadata and controls
19 lines (17 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
if __name__ == '__main__':
from numpy.distutils.core import setup
from numpy.distutils.extension import Extension
from Cython.Build import cythonize
ext = []
#ext += [Extension(name='pygeons.main.cbasis',sources=['pygeons/main/cbasis.pyx'])]
setup(name='PyGeoNS',
version='0.1',
description='Python-based Geodetic Network Smoother',
author='Trever Hines',
author_email='treverhines@gmail.com',
url='www.github.com/treverhines/PyGeoNS',
scripts=['exec/pygeons'],
packages=['pygeons','pygeons.io','pygeons.plot',
'pygeons.clean','pygeons.main'],
ext_modules=cythonize(ext),
license='MIT')