-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (26 loc) · 1015 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
from setuptools import setup
from glob import glob
install_requires = ['rootpy', 'argparse']
setup(
name='aligenqa',
version='0.0.2',
description="Provides tools for post-processing of MC multiplicity estimator studies",
author='Christian Bourjau',
author_email='[email protected]',
packages=['aligenqa'],
long_description=open('README.md').read(),
scripts=glob('scripts/*'),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=install_requires,
)