-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.34 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (34 loc) · 1.34 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
import os
from setuptools import setup, find_packages
root_dir_path = os.path.dirname(os.path.abspath(__file__))
long_description = open(os.path.join(root_dir_path, "README.md")).read()
setup(
name="constattr",
version="0.0.8",
author="Diego J. Romero López",
author_email="diegojromerolopez@gmail.com",
description="Enforce that your constant class attributes are not re-assigned",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License"
],
install_requires=[],
license="MIT",
keywords="const constant classattr class-attributes python",
url="https://github.com/diegojromerolopez/consattr",
packages=find_packages(),
data_files=[],
include_package_data=True,
scripts=[]
)