forked from AndreasAlbert/lhereader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.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
"""pypi package setup."""
import codecs
from os import path
from setuptools import setup, find_packages
HERE = path.abspath(path.dirname(__file__))
with codecs.open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
import sys
requirements = ['scikit-hep']
if sys.version_info < (3,6):
sys.exit('Sorry, Python < 3.6 is not supported')
if sys.version_info < (3,7):
requirements.append('dataclasses')
setup(
name='lhereader',
version='1.0.11',
description='A python module to read LHE files.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/AndreasAlbert/lhereader',
author='Andreas Albert',
author_email='[email protected]',
classifiers=[
],
keywords='lhe madgraph parser reader reading parsing',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
zip_safe=False,
install_requires=requirements,
setup_requires=[],
tests_require=[],
project_urls={
}, )