Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
36 lines (32 loc) · 1.13 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (32 loc) · 1.13 KB
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
28
29
30
31
32
33
34
35
36
fromsetuptoolsimportsetup, find_packages
withopen('requirements.txt') asf:
requirements=f.readlines()
long_description='...need to add description'
setup(
name='al_outerloop',
version='0.0.1',
author='Daniel Weitekamp',
author_email='weitekamp@cmu.edu',
url='https://github.com/apprenticelearner/AL_outerloop',
description='Runs outerloop agents.',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
packages=find_packages(),
# scripts=['bin/altrain'],
# entry_points ={
# },
# entry_points={
# "console_scripts": [
# "altrain = al_hostserver.altrain:pre_main"
# ]
# },
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
keywords='apprentice learner outerloop',
install_requires=requirements,
zip_safe=False
)