-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (30 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
33
34
#!/usr/bin/env python
"""
setup.py file for dbtoolspy
"""
import imp
import sys
# Use setuptools to include build_sphinx, upload/sphinx commands
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
long_description = open('README.rst').read()
_version = imp.load_source('_version','dbtoolspy/_version.py')
setup(name='dbtoolspy',
version=_version.__version__,
description="""Python Module to Read EPICS Database File""",
long_description=long_description,
author="Xiaoqiang Wang",
author_email="[email protected]",
url="https://github.com/paulscherrerinstitue/dbtoolspy",
packages=["dbtoolspy"],
license="BSD",
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)