-
Notifications
You must be signed in to change notification settings - Fork 59
/
setup.py
59 lines (54 loc) · 2.02 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
50
51
52
53
54
55
56
57
58
import setuptools
import glob
scripts = glob.glob('bin/*.py')
scripts.remove('bin/__init__.py')
scripts.append('bin/heppy')
print scripts
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='heppyfwk',
version='3.0.1',
author='Colin Bernet',
author_email='[email protected]',
description='An event processing framework for High Energy Physics.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/cbernet/heppy',
python_requires='<3.0',
# Choose your license
# license='License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 5 - Production/Stable',
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords='particle physics root',
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=setuptools.find_packages('.'),
# List run-time dependencies here. These will be installed by pip when
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=[
'numpy',
'scipy',
'dill',
'gitpython',
'pyyaml',
'ipython'
],
scripts = scripts
)