-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
60 lines (53 loc) · 1.6 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("betty/version.txt", "r") as fv:
version = fv.read()
with open("requirements/requirements.txt", "r") as f:
requirements = f.read().splitlines()
description = (
"An automatic differentiation library for multilevel optimization and "
"generalized meta-learning"
)
python_requires = ">=3.6.0,<3.11.0"
# run setup
setup(
name="betty",
version=version,
author="Sang Choe",
author_email="[email protected]",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/leopard-ai/betty",
keywords=[
"meta-learning",
"pytorch",
"multilevel optimization",
"machine learning",
"artificial intelligence",
],
packages=find_packages(
exclude=[
"examples",
"docs",
"tests",
"tutorials",
]
),
install_requires=requirements,
license="Apache",
python_requires=python_requires,
# Not sure
include_package_data=True,
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)