Skip to content

Commit

Permalink
Add setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsvanspauwen committed Jun 15, 2023
1 parent 5d3453a commit c2f3401
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ httpx
aiofiles
httpwatcher
google-cloud-storage
boto3
boto3
setuptools
28 changes: 28 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
from setuptools import setup, find_packages

with open('requirements.txt') as f:
requirements = f.read().splitlines()

setup(
name='pystructurizr',
version='0.1.0',
description='A Python DSL inspired by Structurizr, intended for generating C4 diagrams',
author='Niels Vanspauwen',
author_email='[email protected]',
packages=find_packages(),
install_requires=requirements,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
entry_points={
'console_scripts': [
'pystructurizr = pystructurizr.cli:cli'
]
},
)

0 comments on commit c2f3401

Please sign in to comment.