Skip to content

Commit 3a80b1d

Browse files
committed
setuptools stuff
1 parent 5d6b19f commit 3a80b1d

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools", "wheel"]
3+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from setuptools import setup
2+
from distutils.util import convert_path
3+
4+
version_path = convert_path('paam/__version__.py')
5+
global_vars = {}
6+
exec(open(version_path).read(), global_vars)
7+
8+
setup(
9+
name='python-attribute-access-modifiers',
10+
version=global_vars['__version__'],
11+
packages=['paam'],
12+
install_requires=[
13+
'importlib; python_version >= "3.8"',
14+
],
15+
long_description=open('README.md').read(),
16+
url="https://github.com/2435191/python-attribute-access-modifiers",
17+
author="Will Bradley",
18+
author_email="derivativedude123@gmail.com",
19+
license='License :: OSI Approved :: MIT License',
20+
long_description_content_type='text/markdown'
21+
)

0 commit comments

Comments
 (0)