forked from cbourjau/nittygriddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.46 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
from setuptools import setup
from glob import glob
install_requires = ['rootpy', 'pygments', 'pyyaml', 'future']
tests_require = ['nose']
setup(
name='nittygriddy',
version='1.0.6',
description="Convinient way to deploy your ALICE analysis locally (sequential and proof lite) or on the grid",
author='Christian Bourjau',
author_email='christian.bourjau@cern.ch',
packages=['nittygriddy', 'nittygriddy.tests'],
include_package_data=True,
package_data={
'nittygriddy': [
'non-python-files/datasets.yml',
'non-python-files/run.C',
'non-python-files/GetSetting.C',
# 'examples/flame_graph.png'
],
},
long_description=open('README.rst').read(),
url='https://github.com/cbourjau/nittygriddy',
keywords=['alice', 'cern', 'grid', 'proof'],
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 :: Physics",
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=install_requires,
extras_require={'test': tests_require},
test_suite='nose.collector',
)