-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 1.04 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
from setuptools import setup, find_packages
setup(
name='django-restricted-countries', # Name of your package
version='0.1.0', # Version of your package
description='Django middleware to restrict access based on the client\'s country',
long_description=open('README.md').read(), # Read the content of README.md
long_description_content_type='text/markdown',
author='Mbulelo Phillip Peyi',
author_email='[email protected]',
url='https://github.com/Mbulelo-Peyi/restricted_countries', # GitHub repository URL
packages=find_packages(), # Find all packages in the current directory
keywords=['django', 'restricted access', 'web', 'country', 'logging'],
classifiers=[
'Programming Language :: Python :: 3',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
install_requires=[
'Django>=3.1',
'geoip2>=4.0',
'ipware>=2.1',
],
include_package_data=True,
python_requires='>=3.6',
)