forked from alexis-jacq/Learning_from_a_Learner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 647 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 647 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='lfl',
version='0.0.1',
license='Apache License',
description='Implements code from LfL paper (http://proceedings.mlr.press/v97/jacq19a/jacq19a.pdf).',
long_description=readme(),
classifiers=[
'License :: OSI Approved :: Apache License',
'Programming Language :: Python :: 2.7',
],
author='Alexis David Jacq',
author_email='alexis.jacq@gmail.com',
url='https://github.com/alexis-jacq/Learning_from_a_Learner',
packages=find_packages(),
)