-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 910 Bytes
/
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
import os
from setuptools import setup
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
setup(
name="events_manager",
version="0.1",
author="Maciej Zięba",
author_email="[email protected]",
description="Events Manager",
url="https://github.com/maciekz/events_manager",
long_description=read("README.md"),
entry_points={},
install_requires=[
"Django == 4.2.4",
"djangorestframework == 3.14.0",
"djangorestframework_simplejwt == 5.2.2",
],
extras_require={
"dev": [
"black == 23.7.0",
"flake8 == 5.0.4",
"flake8-isort == 5.0.3",
"isort == 5.12.0",
"mypy == 1.5.0",
"pydocstyle == 6.3.0",
"pylama == 8.4.1",
"prospector == 1.10.2",
"remote_pdb == 2.1.0",
]
},
)