-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 765 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 765 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
from setuptools import find_packages, setup
def get_requirements():
requirements = []
with open('requirements.txt') as file:
for line in file:
requirements.append(line[:-1])
return requirements
setup(
name='adlib',
version='1.2.1',
description='Game-theoretic adversarial machine learning library providing '
'a set of learner and adversary modules.',
url='https://github.com/vu-aml/adlib',
license='MIT',
author='Alexandra, Alexander deGroot, Ethan Raymond, Jiazhi Zhang, '
'Bumsu Jung, Yevgeniy Vorobeychik, Matthew Sedam',
author_email='yevgeniy.vorobeychik@vanderbilt.edu',
platforms=['any'],
packages=find_packages(),
install_requires=get_requirements(),
)