-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 793 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
with open("README.md") as f:
readme = f.read()
setup(
name="pfilter", # This is the name of your PyPI-package.
version="0.2.5", # Update the version number for new releases
install_requires=['numpy'],
packages=[
"pfilter"
], # The name of your scipt, and also the command you'll be using for calling it
description="A basic particle filter",
author="John H Williamson",
long_description_content_type="text/markdown",
long_description=readme,
author_email="johnhw@gmail.com",
url="https://github.com/johnhw/pfilter", # use the URL to the github repo
download_url="https://github.com/johnhw/pfilter/tarball/0.2.5",
keywords=["particle", "probabilistic", "stochastic", "filter", "filtering"],
)