-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
executable file
·31 lines (29 loc) · 958 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
# -*- coding: utf-8 -*-
import sys
import getopt
import shutil
from distutils.core import setup
import os
setup(
# data_files=[('optimizer/)],
name = "optimizer",
version = '0.0.1alpha',
packages = ['optimizer'],
package_data = {'optimizer': ['*.png']},
author = "Optimizer authors and contributors",
author_email = "[email protected]",
description = "A Python library for optimization of neuronal models",
# long_description = long_description,
license = "BSD",
url="http://optimizer.readthedocs.org/en/latest/",
classifiers = [
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering']
)
if os.name == 'posix':
script_dir = '/usr/bin'