-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (32 loc) · 1.14 KB
/
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
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.readlines()
long_description = '...need to add description'
setup(
name ='al_train',
version ='0.5.7',
author ='Daniel Weitekamp',
author_email ='[email protected]',
url ='https://github.com/apprenticelearner/AL_Train',
description ='Runs Apprentice Learner agents against in tutors.',
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 training harness',
install_requires = requirements,
zip_safe = False
)