-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (22 loc) · 683 Bytes
/
setup.py
File metadata and controls
35 lines (22 loc) · 683 Bytes
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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name='classproperties',
version='0.2',
python_requires='>=3.5',
description='Decorators for classproperty and cached_classproperty',
long_description=long_description,
url='https://github.com/hottwaj/classproperties',
author='Jonathan Clarke',
license='MIT, Copyright 2021',
classifiers=[
'Typing :: Typed'
],
keywords='',
packages=["classproperties"],
install_requires=[],
)