2020-10-10 03:48:08 +08:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2021-08-07 00:44:15 +08:00
|
|
|
# TODO package data
|
2020-10-10 03:48:08 +08:00
|
|
|
|
|
|
|
with open('README.md', 'r') as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setup(
|
2021-07-14 03:12:28 +08:00
|
|
|
name='bddl',
|
2024-03-18 09:09:31 +08:00
|
|
|
version='3.5.0',
|
2020-10-10 03:48:08 +08:00
|
|
|
author='Stanford University',
|
|
|
|
long_description_content_type='text/markdown',
|
|
|
|
long_description=long_description,
|
2021-08-07 00:44:15 +08:00
|
|
|
url='https://github.com/StanfordVL/bddl',
|
2020-10-10 03:48:08 +08:00
|
|
|
zip_safe=False,
|
|
|
|
packages=find_packages(),
|
2021-01-29 01:59:12 +08:00
|
|
|
install_requires=[
|
|
|
|
'pytest',
|
2021-02-19 15:47:12 +08:00
|
|
|
'numpy',
|
2021-03-15 13:53:53 +08:00
|
|
|
'networkx',
|
2023-05-21 17:02:13 +08:00
|
|
|
'jupytext',
|
|
|
|
'future',
|
2023-09-02 18:44:44 +08:00
|
|
|
'nltk~=3.7'
|
2021-01-29 01:59:12 +08:00
|
|
|
],
|
2020-10-10 03:48:08 +08:00
|
|
|
package_data={},
|
|
|
|
include_package_data=True
|
|
|
|
)
|