-
Notifications
You must be signed in to change notification settings - Fork 13
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 #20 from HealthyPear/feature-update_version
Added versioning to init.py and setup.py using the manual approach.
- Loading branch information
Showing
2 changed files
with
17 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "0.2.1-dev" |
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,16 +1,21 @@ | ||
from setuptools import setup, find_packages | ||
from protopipe import __version__ | ||
|
||
|
||
def readme(): | ||
with open('README.rst') as f: | ||
with open("README.rst") as f: | ||
return f.read() | ||
|
||
setup(name='protopipe', | ||
version='0.1', | ||
description='Pipeline to process events from DL0 to DL3', | ||
url='http://github.com/jjlk/protopipe', | ||
author='CEA', | ||
author_email='[email protected]', | ||
license='MIT', | ||
packages=find_packages(), | ||
install_requires=['ctapipe'], | ||
zip_safe=False) | ||
|
||
setup( | ||
name="protopipe", | ||
version=__version__, | ||
description="Pipeline to process events from DL0 to DL3", | ||
url="https://github.com/cta-observatory/protopipe", | ||
author="Michele Peresano, Karl Kosack, Thierry Stolarczyk, Alice Donini, Thomas Vuillaume", | ||
author_email="[email protected]", | ||
license="MIT", | ||
packages=find_packages(), | ||
install_requires=["ctapipe"], | ||
zip_safe=False, | ||
) |