forked from id03/binoculars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 835 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 835 Bytes
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
import os
from distutils.core import setup
packages = ["binoculars",
"binoculars.backends"]
scripts = [os.path.join("scripts", d)
for d in ["binoculars-fitaid",
"binoculars-gui",
"binoculars-processgui",
"binoculars"]]
setup(name='binoculars', version='0.0.1',
description='FIXME',
long_description='FIXME',
packages=packages,
scripts=scripts,
author="Willem Onderwaater, Sander Roobol",
author_email="onderwaa@esrf.fr",
url='FIXME',
license='GPL-3',
classifiers=[
'Topic :: Scientific/Engineering',
'Development Status :: 3 - Alpha',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7']
)