-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (30 loc) · 1.04 KB
/
setup.py
File metadata and controls
executable file
·34 lines (30 loc) · 1.04 KB
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
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from glob import glob
execfile('rootpy/info.py')
setup(name='rootpy',
version=__VERSION__,
description='The way PyROOT should be, and more!',
long_description=open('README.rst').read(),
author='Noel Dawe',
author_email='noel.dawe@cern.ch',
url=__URL__,
download_url=__DOWNLOAD_URL__,
packages=find_packages(),
install_requires = ['python>=2.6', 'argparse'],
scripts=glob('scripts/*') + \
glob('rootpy/scripts-standalone/*'),
package_data={'': ['scripts-standalone/*']},
license='GPLv3',
classifiers=[
"Programming Language :: Python",
"Topic :: Utilities",
"Operating System :: POSIX :: Linux",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)"
]
)