Skip to content

Commit

Permalink
Merge pull request #20 from HealthyPear/feature-update_version
Browse files Browse the repository at this point in the history
Added versioning to init.py and setup.py using the manual approach.
  • Loading branch information
HealthyPear authored Nov 8, 2019
2 parents 917e57e + 7a96466 commit 768109d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
1 change: 1 addition & 0 deletions protopipe/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.2.1-dev"
27 changes: 16 additions & 11 deletions setup.py
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,
)

0 comments on commit 768109d

Please sign in to comment.