-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (45 loc) · 1.31 KB
/
setup.py
File metadata and controls
50 lines (45 loc) · 1.31 KB
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
48
49
import os
import sys
import numpy
import distutils
from distutils.core import setup, Extension
try:
__doc__ = open('readme.md').read()
except IOError:
pass
__file__ = './'
NAME = "dpmeans"
VERSION = "0.1"
AUTHOR = "Michael Habeck"
EMAIL = "mhabeck@gwdg.de"
URL = "http://www.uni-goettingen.de/de/444206.html"
SUMMARY = ""
DESCRIPTION = __doc__
LICENSE = 'MIT'
REQUIRES = ['numpy', 'scipy', 'sklearn']
setup(
name=NAME,
packages=[NAME],
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
url=URL,
description=SUMMARY,
long_description=DESCRIPTION,
license=LICENSE,
requires=REQUIRES,
include_dirs = [numpy.get_include()],
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries')
)