-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (30 loc) · 945 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
from setuptools import setup
classifiers = [
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Intended Audience :: Developers",
"Framework :: Django",
]
with open("README.rst") as f:
long_description = f.read()
setup(
name="drf-optionalfields",
version="0.9.15",
description="Fine tuning for serialized fields",
long_description=long_description,
packages=["drf_optionalfields"],
author="Petros G. Sideris",
author_email="[email protected]",
license="MIT",
url="https://github.com/sideris/drf-optionalfields",
classifiers=classifiers,
extras_require={
"dev": [
"pytest", "pytest-cov", "pytest-django", "coveralls",
"django", "djangorestframework", "mock_django",
"setuptools", "wheel",
]
},
)