-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 1.04 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
packages = find_packages()
desc ="""Commissioning tools for accelerators
This tool consists of a library which provides:
* :mod:`ophyd`: device drivers for BESSY II
* :mod:`bluesky`:
See https://github.com/XXX
"""
setup(
full_name = "Berlin accelerator commissioning tools",
name = "bact2",
version = "0.0.0",
author = "Pierre Schnizer, Tom Mertens, Andreas Schälicke",
author_email= "pierre.schnizer@helmholtz-berlin.de tom.mertens@helmholtz-berlin.de markus.ries@helmholz-berlin.de andreas.schaelicke@helmholtz-berlin.de",
description = desc,
license = "GPL",
keywords = ",EPICS",
url="https://github.com/TMsangohan/bact2/",
packages = packages,
classifiers = [
"Development Status :: 2 - Pre - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
]
)