-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·49 lines (36 loc) · 1.35 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
from __future__ import print_function
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import muonic
def read_file(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(name=muonic.__name__,
version=muonic.__version__,
author=muonic.__author__,
author_email=muonic.__author_email__,
description=muonic.__description__,
long_description=read_file("README.md"),
license=muonic.__license__,
url=muonic.__source_location__,
download_url=muonic.__download_url__,
scripts=["bin/which_tty_daq"],
packages=["muonic", "muonic.lib", "muonic.daq", "muonic.analysis_scripts"],
package_data={"muonic": ["settings.conf", "daq/simdaq.txt"]},
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or " +
"later (GPLv3+)",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics"
],
entry_points={
"console_scripts": ["muonic=muonic.muonic:main"]
})