-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
82 lines (71 loc) · 2.39 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# #!/usr/bin/env python
# from setuptools import setup, find_packages
# import os
# from olp import __version__
# PACKAGE_DIR = os.path.abspath(os.path.dirname(__file__))
# README_PATH = os.path.join(PACKAGE_DIR, 'README.rst')
# os.chdir(PACKAGE_DIR)
# with open(README_PATH) as readme:
# file_description = readme.read()
# setup(
# name='olp',
# version=__version__,
# url="https://github.com/Rediker-Software/olp",
# author="Kevin Brown",
# author_email="[email protected]",
# description="Object-level permissions across multiple models for Django.",
# long_description=file_description,
# license="MIT",
# packages=find_packages(exclude=["tests*", ]),
# zip_safe=True,
# include_package_data=True,
# install_requires=[
# 'Django>=1.3',
# ],
# # See http://pypi.python.org/pypi?%3Aaction=list_classifiers
# classifiers=[
# 'Development Status :: 3 - Alpha',
# 'Environment :: Web Environment',
# 'Framework :: Django',
# 'Intended Audience :: Developers',
# 'License :: OSI Approved :: MIT License',
# 'Programming Language :: Python',
# 'Programming Language :: Python :: 2.7',
# 'Programming Language :: Python :: 3.4',
# ]
# )
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
from olp import __version__
PACKAGE_DIR = os.path.abspath(os.path.dirname(__file__))
README_PATH = os.path.join(PACKAGE_DIR, 'README.rst')
os.chdir(PACKAGE_DIR)
with open(README_PATH) as readme:
file_description = readme.read()
setup(
name='olp',
version=__version__,
url="https://github.com/Rediker-Software/olp",
author="Kevin Brown",
author_email="[email protected]",
description="Object-level permissions across multiple models for Django.",
long_description=file_description,
license="MIT",
packages=find_packages(exclude=["tests*", ]),
zip_safe=True,
include_package_data=True,
install_requires=[
'Django==4.2.19',
],
# See http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.11',
]
)