-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (27 loc) · 845 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup, find_packages
setup(
name="lofarnn",
version="0.7.1",
license="GPLv3",
author="Jacob Bieker",
authoer_email="[email protected]",
url="https://github.com/jacobbieker/lofarnn",
download_url="https://github.com/jacobbieker/lofarnn/archive/v0.7.1.tar.gz",
keywords=["Radio Astronomy", "PyTorch", "Machine Learning"],
packages=find_packages(),
install_requires=[
"astropy",
"numpy",
"scikit-image",
"pillow",
"scipy",
"matplotlib",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
],
)