Skip to content

Commit 25ffcb9

Browse files
committed
update for pypi
1 parent 573e1c5 commit 25ffcb9

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

setup.cfg

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[metadata]
2+
name = ma5_expert
3+
description = MadAnalysis 5 interpreter for Expert mode
4+
long_description = file: README.md
5+
long_description_content_type = text/markdown
6+
url = https://github.com/jackaraz/ma5_expert
7+
author = Jack Y. Araz
8+
author_email = jack.araz@durham.ac.uk
9+
license = MIT
10+
license_file = LICENSE
11+
keywords = physics madanalysis5
12+
project_urls =
13+
Source Code = https://github.com/jackaraz/ma5_expert
14+
Issue Tracker = https://github.com/jackaraz/ma5_expert/issues
15+
classifiers =
16+
Intended Audience :: Science/Research
17+
License :: OSI Approved :: MIT License
18+
Operating System :: OS Independent
19+
Programming Language :: Python :: 3
20+
Topic :: Scientific/Engineering :: Physics
21+
22+
[options]
23+
package_dir =
24+
= src
25+
packages = find:
26+
include_package_data = True
27+
python_requires = >=3.7
28+
install_requires =
29+
numpy>=1.19.5
30+
31+
[options.packages.find]
32+
where = src

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="ma5_expert",
15-
version="1.0.1",
15+
version="1.0.2",
1616
description=("MadAnalysis 5 interpreter for Expert mode"),
1717
long_description=long_description,
1818
long_description_content_type="text/markdown",

src/ma5_expert/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.0.1'
1+
__version__ = '1.0.2'
22

33
import logging
44
import sys

0 commit comments

Comments
 (0)