-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·42 lines (37 loc) · 1.35 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
import os
from setuptools import find_packages, setup
version = __import__('djecrety').__version__
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
long_description = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='djecrety',
version=version,
python_requires='>=3.6',
packages=find_packages(exclude=['testproject']),
include_package_data=True,
license='GNU Version 3 License',
description='Djecrety provides a command to generate a new secret key '
'for your project and save it to `settings.py.`',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://djecrety.ir',
author='Majid Rouhi',
author_email='mrouhi13@gmail.com',
zip_safe=False,
install_requires=[
'Django>=2.0',
],
classifiers=[
'Environment :: Console',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
)