-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from amanmdesai/beam-energy
use initial momentum as parameter
- Loading branch information
Showing
13 changed files
with
127 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,30 @@ | ||
import setuptools | ||
|
||
with open('README.md','r') as file: | ||
with open("README.md", "r") as file: | ||
long_description = file.read() | ||
|
||
setuptools.setup( | ||
name="pymcabc", | ||
version="0.3.0", | ||
description= "Monte Carlo Event Generator for the ABC theory", | ||
author="Aman Desai", | ||
author_email="[email protected]", | ||
maintainer="Aman Desai", | ||
maintainer_email="[email protected]", | ||
url = "https://github.com/amanmdesai/pymcabc", | ||
long_description=long_description, | ||
packages=["pymcabc"], | ||
install_requires=["numpy","uproot","matplotlib","feynman"], | ||
long_description_content_type="text/markdown", | ||
classifiers=["License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Operating System :: Unix", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: MacOS"] | ||
name="pymcabc", | ||
version="0.5.0", | ||
description="Monte Carlo Event Generator for the ABC theory", | ||
author="Aman Desai", | ||
author_email="[email protected]", | ||
maintainer="Aman Desai", | ||
maintainer_email="[email protected]", | ||
url="https://github.com/amanmdesai/pymcabc", | ||
long_description=long_description, | ||
packages=["pymcabc"], | ||
install_requires=["numpy", "uproot", "matplotlib", "feynman"], | ||
long_description_content_type="text/markdown", | ||
classifiers=[ | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Operating System :: Unix", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: MacOS", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.