|
1 | 1 | from setuptools import setup, find_packages
|
2 | 2 |
|
3 |
| -version = "2.7.19" |
| 3 | +version = "2.7.20" |
4 | 4 |
|
5 | 5 | setup(
|
6 | 6 | include_package_data=True,
|
|
9 | 9 | description="Metaflow: More Data Science, Less Engineering",
|
10 | 10 | long_description=open("README.md").read(),
|
11 | 11 | long_description_content_type="text/markdown",
|
12 |
| - author="Machine Learning Infrastructure Team at Netflix", |
| 12 | + author="Metaflow Developers", |
13 | 13 |
|
14 |
| - license="Apache License 2.0", |
| 14 | + license="Apache Software License", |
| 15 | + classifiers=[ |
| 16 | + "Development Status :: 5 - Production/Stable", |
| 17 | + "License :: OSI Approved :: Apache Software License", |
| 18 | + "Operating System :: MacOS :: MacOS X", |
| 19 | + "Operating System :: POSIX :: Linux", |
| 20 | + "Programming Language :: Python :: 3", |
| 21 | + "Programming Language :: Python :: 3.5", |
| 22 | + "Programming Language :: Python :: 3.6", |
| 23 | + "Programming Language :: Python :: 3.7", |
| 24 | + "Programming Language :: Python :: 3.8", |
| 25 | + "Programming Language :: Python :: 3.9", |
| 26 | + "Programming Language :: Python :: 3.10", |
| 27 | + "Programming Language :: Python :: 3.11", |
| 28 | + ], |
| 29 | + project_urls={ |
| 30 | + "Source": "https://github.com/Netflix/metaflow", |
| 31 | + "Issues": "https://github.com/Netflix/metaflow/issues", |
| 32 | + "Documentation": "https://docs.metaflow.org", |
| 33 | + }, |
15 | 34 | packages=find_packages(exclude=["metaflow_test"]),
|
16 | 35 | py_modules=[
|
17 | 36 | "metaflow",
|
|
0 commit comments