|
1 | 1 | #!/usr/bin/env python
|
2 | 2 |
|
3 |
| -from setuptools.depends import get_module_constant |
4 | 3 | from setuptools import setup # noqa
|
| 4 | +from setuptools.depends import get_module_constant |
5 | 5 |
|
6 | 6 | dl_url = "https://github.com/linsomniac/python-memcached/releases/download/{0}/python-memcached-{0}.tar.gz"
|
7 | 7 |
|
8 |
| -version = get_module_constant('memcache', '__version__') |
| 8 | +version = get_module_constant("memcache", "__version__") |
9 | 9 | setup(
|
10 | 10 | name="python-memcached",
|
11 | 11 | version=version,
|
|
17 | 17 | maintainer="Sean Reifschneider",
|
18 | 18 | maintainer_email="[email protected]",
|
19 | 19 | url="https://github.com/linsomniac/python-memcached",
|
20 |
| - download_url="https://github.com/linsomniac/python-memcached/releases/download/{0}/python-memcached-{0}.tar.gz".format(version), # noqa |
| 20 | + download_url="https://github.com/linsomniac/python-memcached/releases/download/{0}/python-memcached-{0}.tar.gz".format( |
| 21 | + version |
| 22 | + ), # noqa |
21 | 23 | py_modules=["memcache"],
|
22 |
| - install_requires=open('requirements.txt').read().split(), |
| 24 | + install_requires=open("requirements.txt").read().split(), |
23 | 25 | classifiers=[
|
24 | 26 | "Development Status :: 5 - Production/Stable",
|
25 | 27 | "Intended Audience :: Developers",
|
|
30 | 32 | "Topic :: Software Development :: Libraries :: Python Modules",
|
31 | 33 | "Programming Language :: Python",
|
32 | 34 | "Programming Language :: Python :: 3",
|
33 |
| - "Programming Language :: Python :: 3.6", |
34 |
| - "Programming Language :: Python :: 3.7", |
35 |
| - "Programming Language :: Python :: 3.8", |
36 | 35 | "Programming Language :: Python :: 3.9",
|
37 | 36 | "Programming Language :: Python :: 3.10",
|
38 | 37 | "Programming Language :: Python :: 3.11",
|
39 | 38 | "Programming Language :: Python :: 3.12",
|
| 39 | + "Programming Language :: Python :: 3.13", |
40 | 40 | ],
|
41 | 41 | )
|
0 commit comments