Skip to content

Commit

Permalink
add file pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
wchistow committed Jul 18, 2023
1 parent f9676bc commit d09d220
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[project]
name = 'pystackapi'
version = '0.1.0dev'
license = {file = 'LICENSE'}
description = 'PyStackAPI is a modern, 100% typed wrapper for the StackExchange API, written in Python.'
authors = [
{name = 'Vladimir Chistov', email='wchistow@yandex.ru'},
]
requires-python = '>=3.10'
readme = 'README.md'
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Typing :: Typed',
]
dependencies = [
'requests==2.31.0',
]

[project.urls]
'Homepage' = 'https://github.com/wchistow/pystackapi'
'Bug Tracker' = 'https://github.com/wchistow/pystackapi/issues'
'Repository' = 'https://github.com/wchistow/pystackapi.git'

0 comments on commit d09d220

Please sign in to comment.