-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.15 KB
/
setup.py
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
36
37
38
import setuptools
with open("README.rst", "r") as f:
readme = f.read()
setuptools.setup(
# Package
name="pheres",
version="2.0a2",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
package_data={"pheres": ["py.typed"]},
python_requires="~=3.9",
install_requires=[
"attrs>=20.1.0"
],
# Metadata
author="Quentin Soubeyran",
license="MIT",
author_email="45202794+QuentinSoubeyran@users.noreply.github.com",
description="JSON conversions in a decorator",
long_description=readme,
long_description_content_type="text/x-rst",
url="https://github.com/QuentinSoubeyran/pheres",
project_urls={
"Documentation": r"https://github.com/QuentinSoubeyran/pheres/wiki",
"Source": r"https://github.com/QuentinSoubeyran/pheres",
"Tracker": r"https://github.com/QuentinSoubeyran/pheres/issues",
},
keywords="json",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Typing :: Typed",
],
)