forked from HEPData/hepdata_lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.59 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
"""pypi package setup."""
from __future__ import print_function
import codecs
from os import path
from setuptools import setup, find_packages
try:
import ROOT # pylint: disable=W0611
except ImportError:
print("ROOT is required by this library.")
DEPS = ['numpy', 'PyYAML>4.*', 'future', 'pylint']
HERE = path.abspath(path.dirname(__file__))
with codecs.open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='hepdata_lib',
version='0.3.2',
description='Library for getting your data into HEPData',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/HEPData/hepdata_lib',
author='Andreas Albert, Clemens Lange',
author_email='hepdata-lib@cern.ch',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='HEPData physics OpenData',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
zip_safe=False,
install_requires=DEPS,
setup_requires=['pytest-runner', 'pytest-cov'],
tests_require=['pytest', 'papermill', 'six'],
project_urls={
'Documentation': 'https://hepdata-lib.readthedocs.io',
'Bug Reports': 'https://github.com/HEPData/hepdata_lib/issues',
'Source': 'https://github.com/HEPData/hepdata_lib',
}, )