-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (19 loc) · 683 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (19 loc) · 683 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
# Copyright (c) Meta Platforms, Inc. and affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
import setuptools
with open("README.md", encoding="utf8") as f:
readme = f.read()
if __name__ == "__main__":
setuptools.setup(
name="paco",
version="0.5",
author="Meta Platforms, Inc.",
description="OZI data scripts",
long_description=readme,
url="https://github.com/facebookresearch/paco.git",
license="MIT",
packages=setuptools.find_packages(),
setup_requires=["pytest-runner"],
test_requires=["pytest"],
)