Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use setuptools #25

Merged
merged 3 commits into from
Jan 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
#!/usr/bin/env python2

from distutils.core import setup
from setuptools import setup

import bayesian_changepoint_detection

setup(name='bayesian_changepoint_detection',
version=bayesian_changepoint_detection.__version__,
description='Some Bayesian changepoint detection algorithms',
author='Johannes Kulick',
author_email='johannes.kulick@ipvs.uni-stuttgart.de',
url='http://github.com/hildensia/bayesian_changepoint_detection',
packages = ['bayesian_changepoint_detection'],
requires=['scipy', 'numpy']
)
setup(
name='bayesian_changepoint_detection',
version=bayesian_changepoint_detection.__version__,
description='Some Bayesian changepoint detection algorithms',
author='Johannes Kulick',
author_email='johannes.kulick@ipvs.uni-stuttgart.de',
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since you are updating it here anyway, can you change this to mail@johanneskulick.net, thanks.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am happy to do this, but you've already merged. Or do you mean when I update to setup.cfg?

url='http://github.com/hildensia/bayesian_changepoint_detection',
packages=['bayesian_changepoint_detection'],
install_requires=['scipy', 'numpy']
)