Skip to content

Commit

Permalink
Added first setup for package
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeusina committed Aug 1, 2023
0 parents commit 7c565dd
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
Empty file added README.md
Empty file.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[egg_info]
tag_build =
tag_date = 0
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


def readme():
with open('README.md', 'r') as f:
return f.read()


setup(
name='petersburgedu_wrap',
version='0.0.1',
author='zeusina',
author_email='kachusov_k@outlook.com',
description='This is module for work with petersburgedu website API',
long_description=readme(),
long_description_content_type='text/markdown',
url='',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent'
],
keywords='api python petersburgedu',
project_urls={
'Documentation': ''
},
python_requires='>=3.7'
)

0 comments on commit 7c565dd

Please sign in to comment.