|
| 1 | +import setuptools |
| 2 | + |
| 3 | +with open("README.md", "r", encoding="utf-8") as fh: |
| 4 | + long_description = fh.read() |
| 5 | + |
| 6 | +setuptools.setup( |
| 7 | + name="python-notion-exporter", |
| 8 | + author="Roméo Phillips", |
| 9 | + author_email="phillipsromeo@gmail.com", |
| 10 | + description="Export and download Notion pages asynchronously", |
| 11 | + keywords="notion, notion-api, notion-exporter, notion-downloader, notion-py", |
| 12 | + long_description=long_description, |
| 13 | + long_description_content_type="text/markdown", |
| 14 | + url="https://github.com/tomchen/example_pypi_package", |
| 15 | + project_urls={ |
| 16 | + "Documentation": "https://github.com/Strvm/python-notion-exporter", |
| 17 | + "Bug Reports": "https://github.com/Strvm/python-notion-exporter", |
| 18 | + "Source Code": "https://github.com/Strvm/python-notion-exporter", |
| 19 | + }, |
| 20 | + package_dir={"": "src"}, |
| 21 | + packages=setuptools.find_packages(where="src"), |
| 22 | + classifiers=[ |
| 23 | + # see https://pypi.org/classifiers/ |
| 24 | + "Development Status :: 5 - Production/Stable", |
| 25 | + "Intended Audience :: Developers", |
| 26 | + "Topic :: Software Development :: Build Tools", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.6", |
| 29 | + "Programming Language :: Python :: 3.7", |
| 30 | + "Programming Language :: Python :: 3.8", |
| 31 | + "Programming Language :: Python :: 3.9", |
| 32 | + "Programming Language :: Python :: 3 :: Only", |
| 33 | + "License :: OSI Approved :: MIT License", |
| 34 | + "Operating System :: OS Independent", |
| 35 | + ], |
| 36 | + python_requires=">=3.6", |
| 37 | + # install_requires=['Pillow'], |
| 38 | + extras_require={ |
| 39 | + "dev": ["check-manifest"], |
| 40 | + # 'test': ['coverage'], |
| 41 | + }, |
| 42 | + # entry_points={ |
| 43 | + # "console_scripts": [ # This can provide executable scripts |
| 44 | + # "run=notion-exporter:main", |
| 45 | + # # You can execute `run` in bash to run `main()` in src/examplepy/__init__.py |
| 46 | + # ], |
| 47 | + # }, |
| 48 | +) |
0 commit comments