-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·36 lines (31 loc) · 1.01 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
#!/usr/bin/env python
from setuptools import setup
VERSION = '1.0.0'
def read(file_name):
with open(file_name, 'r') as f:
return f.read()
setup(
author='Krzysztof Jurewicz',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: GIS',
],
description='''Distance-based clustering tool''',
long_description=read('README.rst'),
name='yacluster',
py_modules=[
'yacluster',
],
url='http://github.com/KrzysiekJ/yacluster',
version=VERSION,
)