-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
42 lines (38 loc) · 1.43 KB
/
setup.cfg
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
# See: https://is.gd/wJKTbF setup.cfg guide from pypa.io
[metadata]
name = pyprotect_package
description = Protect class attributes in any python object instance
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD
author = Sundar Nagarajan
url = https://github.com/sundarnagarajan/pyprotect
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Software Development :: Libraries
Natural Language :: English
Operating System :: POSIX :: Linux
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Cython
License :: OSI Approved :: BSD License
keywords =
private private_attributes frozen immutable freeze
frozen_object immutable_object freeze_object venv
virtualenv pypy pypy3
project_urls =
Source = https://github.com/sundarnagarajan/pyprotect
Tracker = https://github.com/sundarnagarajan/pyprotect/issues
Documentation = https://github.com/sundarnagarajan/pyprotect/blob/main/README.md
[options]
# If you use __file__, you need zip_safe=False
# See: http://tiny.cc/nef2vz
# or: https://t.ly/XBwC
# Otherwise omit this line
zip_safe = True
# To bundle additional sources (e.g. C-source / Cython source)
# Add the source file paths to MANIFEST.in and set
# include_package_data = True
# Otherwise (to ignore MANIFEST.in if present), omit this line
include_package_data = True