-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (35 loc) · 1.29 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
39
40
41
42
43
44
import requests
from setuptools import setup
response = requests.get('https://raw.githubusercontent.com/BdVade/DjangoRestAdmin/main/README.md')
README = response.text
# The directory containing this file
# The text of the README file
# README = (HERE / "README.md").read_text()
setup(
name="drf-admin",
version="0.1.2",
description="A package to generate CRUD endpoints for registered models with the Django-REST Framework.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/BdVade/DRF-admin",
author="Aderibigbe Victor",
author_email="[email protected]",
keywords=['django', 'python', 'django-rest-framework', "admin", "api"],
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools'
],
packages=[],
include_package_data=True,
install_requires=["Django>=3.2.9", "djangorestframework", "coreapi"],
package_dir={"": "restadmin"},
python_requires='>=3',
test_suite='load_tests.get_suite'
# project_urls={
#
# },
)