Make vendored symposion into an installable Python package
This allows us to install with `pip install "-e vendor/symposion"` similar to the other vendored packages. There's no good reason for this to be different to the others and depend on PYTHONPATH hacking. Re-add
This commit is contained in:
parent
8020737d7a
commit
34509d23eb
147 changed files with 10 additions and 1 deletions
pinaxcon
vendor/symposion
pyproject.tomlsetup.cfgsetup.py
symposion
LICENSE__init__.pyconf.py
conference
constants.pylocale
managers.pymodels.pyproposals
reviews
__init__.pyadmin.pyapps.pycontext_processors.pyforms.py
management
__init__.py
commands
migrations
models.pytemplatetags
urls.pyutils.pyviews.pyschedule
__init__.pyadmin.pyapps.pyforms.pyhelpers.py
migrations
0001_initial.py0002_presentation_unpublish.py0003_auto_20161113_1530.py0003_slot_exclusive.py0004_merge.py0005_auto_20161210_1736.py0006_room_track.py0007_auto_20161224_1709.py0008_auto_20190122_0815.py__init__.py
models.pytests
timetable.pyurls.pyviews.pyspeakers
|
@ -16,7 +16,6 @@ PROJECT_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir
|
|||
PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__))
|
||||
DJANGO_ROOT = os.path.abspath(os.path.dirname(django.__file__))
|
||||
BASE_DIR = PACKAGE_ROOT
|
||||
sys.path.append(os.path.join(PROJECT_ROOT, 'vendor'))
|
||||
|
||||
|
||||
### USER SETTINGS
|
||||
|
|
3
vendor/symposion/pyproject.toml
vendored
Normal file
3
vendor/symposion/pyproject.toml
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[build-system]
|
||||
requires = ["setuptools>=42"]
|
||||
build-backend = "setuptools.build_meta"
|
3
vendor/symposion/setup.cfg
vendored
Normal file
3
vendor/symposion/setup.cfg
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[metadata]
|
||||
name = symposion
|
||||
version = attr: symposion.__version__
|
3
vendor/symposion/setup.py
vendored
Normal file
3
vendor/symposion/setup.py
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
import setuptools
|
||||
|
||||
setuptools.setup()
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue