forked from samuelcolvin/watchfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (59 loc) · 2.25 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
61
62
63
64
65
import os
from importlib.machinery import SourceFileLoader
from pathlib import Path
from setuptools import setup
description = 'Simple, modern and high performance file watching and code reload in python.'
THIS_DIR = Path(__file__).resolve().parent
try:
long_description = (THIS_DIR / 'README.md').read_text()
except FileNotFoundError:
long_description = description
# avoid loading the package before requirements are installed:
version = SourceFileLoader('version', 'watchfiles/version.py').load_module()
extra = {}
if not os.getenv('SKIP_RUST_EXTENSION'):
from setuptools_rust import Binding, RustExtension
extra['rust_extensions'] = [RustExtension('watchfiles._rust_notify', binding=Binding.PyO3)]
setup(
name='watchfiles',
version=str(version.VERSION),
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Environment :: MacOS X',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Filesystems',
'Framework :: AnyIO',
],
author='Samuel Colvin',
author_email='[email protected]',
url='https://github.com/samuelcolvin/watchfiles',
entry_points="""
[console_scripts]
watchfiles=watchfiles.cli:cli
""",
license='MIT',
packages=['watchfiles'],
package_data={'watchfiles': ['py.typed', '*.pyi']},
install_requires=['anyio>=3.0.0,<4'],
python_requires='>=3.7',
zip_safe=False,
**extra,
)