forked from asappresearch/webagents-step
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 730 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 730 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
26
from setuptools import find_packages, setup
from io import open
def read_requirements_file(filename):
with open(filename) as f:
return [line.strip() for line in f]
setup(
name="webagents_step",
version="0.0.1",
author="Paloma Sodhi",
author_email="psodhi@asapp.com",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="",
package_dir={'': 'src'},
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=read_requirements_file("requirements.txt"),
entry_points={},
include_package_data=True,
python_requires=">=3.6",
tests_require=["pytest"],
)