-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 887 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
from setuptools import setup, find_packages
setup(
name='l2augment',
version='0.1',
description='Code for learning augmentation pattern for test-time adaptation method',
url='https://github.com/robflynnyh/learning-to-augment',
author='Rob Flynn',
author_email='[email protected]',
license='Apache 2.0',
packages=find_packages(),
include_package_data=True,
install_requires=['torch',
'numpy',
],
classifiers=[
'Development Status :: 2 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
],
)