forked from haihabi/PyNNcml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 909 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 909 Bytes
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setuptools.setup(
name="pynncml",
version="0.1.1",
author="Hai Victor Habi",
author_email="victoropensource@gmail.com",
description="A python toolbox based on PyTorch which utilized neural network for rain estimation and classification from commercial microwave link (CMLs) data.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=required,
url="https://github.com/haihabi/torch_rain",
packages=setuptools.find_packages(exclude=['tests']),
package_data={'pynncml.model_zoo':['*']},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)