-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 816 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 816 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
import setuptools
def readme():
with open('README.md') as f:
return f.read()
setuptools.setup(name='torchpropel',
version='0.0.3',
description='Probabilistic Parameteric Regression Loss (PROPEL)',
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
],
keywords='regression probabilistic neural networks machine learning',
url='http://github.com/masadcv/PROPEL',
author='Muhammad Asad',
author_email='muhammad.asad@kcl.ac.uk',
license='BSD-3-Clause',
packages=['torchpropel'],
install_requires=[
'torch',
],
zip_safe=False)