-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.23 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.23 KB
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
import pathlib
from distutils.core import setup
HERE = pathlib.Path(__file__).parent.resolve()
LONG_DESCRIPTION = (HERE / "README.md").read_text(encoding="utf-8")
setup(
name="repeatable",
version="0.0.1",
description="Python package to create generator-like objects that can be iterated over more than once.",
author="Alastair Stanley",
license="Apache-2.0",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
python_requires=">=3.9.0",
install_requires=[
],
project_urls={
"Source": "https://github.com/optim-ally/repeatable.git",
},
classifiers=[
# see https://pypi.org/classifiers/
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
],
package_dir={"": "src"},
include_package_data=True,
)