-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (57 loc) · 1.4 KB
/
setup.py
File metadata and controls
63 lines (57 loc) · 1.4 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python3
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT license.
from pathlib import Path
from setuptools import setup
def readme():
with open(Path(__file__).parent/'README.rst') as f:
return f.read()
setup(
name='bistring',
version='0.5.0',
description='Bidirectionally transformed strings',
long_description=readme(),
long_description_content_type='text/x-rst',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
'Topic :: Text Processing :: General',
'Typing :: Typed',
],
keywords='bistring string non-destructive',
url='https://github.com/microsoft/bistring',
author='Microsoft Research Montreal',
author_email='msrmtle@microsoft.com',
license='MIT',
packages=[
'bistring',
],
package_data={
'bistring': [
'py.typed',
],
},
zip_safe=False,
test_suite='tests',
python_requires='>=3.10',
setup_requires=[
'pytest-runner',
],
install_requires=[
'pyicu',
],
extras_require={
'dev': [
'exceptiongroup',
'lxml',
'mypy',
'pytest',
'regex',
'tomli',
],
},
tests_require=[
'bistring[dev]',
],
)